﻿$(document).ready
(
	function()
	{

	
      $('div#main-nav ul li a').hover(function() {
        $(this).parent().addClass('internet_hover');
      }, function() {
        $(this).parent().removeClass('internet_hover');
      });
      $('div#main-nav ul li a').focus(function() {
        $(this).addClass('internet_hover');
      }, function() {
        $(this).removeClass('internet_hover');
      });
      $('div#main-nav ul li a').blur(function() {
        $(this).addClass('internet_hover');
      }, function() {
        $(this).removeClass('internet_hover');
      });


      $('#cycle').cycle({ 
		    fx:    'fade', 
		    timeout:         1000,
		    speed:  2500 
		 });
		 
		 $(".jcarousel").jCarouselLite({
        	vertical: true,
        	visible: 2,
        	scroll: 2,
        	auto:1000,
        	speed:1000
    	});
	}
);

