 jQuery(function($) {
 
 //disable right-click
   $(this).bind('contextmenu', function(e) { 
	   return false;
	});

 //选中当前菜单
$('#nav'+topmenu).parent().addClass('cur');
//$('#mainleft #curmenu').css('top',59+(leftmenu-1)*21+'px');
$('.leftmenu  li a#lnav'+leftmenu).addClass('cur');
$('.leftmenu  li a.cur').parent().addClass('cur');

$("#header ul li").hover(function(){$(this).addClass("mover");},function(){$(this).removeClass("mover");}); 
$(".leftmenu li a[class!='cur']").hover(function(){$(this).addClass("mover");},function(){$(this).removeClass("mover");}); 

 //滚动新闻
$("#hotnews.jCarouselLite").jCarouselLite({
    auto: 4000,
    speed: 600,
	visible: 1
});

//滚动产品
$("#hotproduct.jCarouselLite").jCarouselLite({
    auto: 6000,
    speed: 600,
	visible: 1,
	btnNext: "#hotproduct #next",
	btnPrev: "#hotproduct #pre"
});

}); 