$(function(){  
  $('#main_menu li').hover(function() {
		$(this).find('.submenu').slideDown("fast");
	}, function() {
		$(this).find('.submenu').slideUp("fast");
	});
	
	$('.submenu').hover(function() {
    $(this).prev().addClass("active");
  }, function() {
    $(this).prev().removeClass("active");
  });
  
  $(".carousel").jCarouselLite({
      btnNext: ".carousel_next",
      btnPrev: ".carousel_prev",
      visible: 1,
      auto:true,
      speed:2500
  });
  
  $("#rotator").wtRotator({
		width:678,
		height:220,
		button_width:31,
		button_height:31,
		auto_start:true,
		delay:5000,
		transition:"fade",
		display_thumbs:true,
		display_timer:false,
		mouseover_pause:true,
		cpanel_mouseover:false,
		text_mouseover:false,
    text_effect:"down",
		shuffle:false    
	});

});
