// JavaScript Document

$(document).ready(function() {  

/*****************导航*********************/ 
 
$(".nav li").hover(
       function(){$(this).find("dl").show();},
       function(){$(this).find("dl").hide();}
);

/**************遍历导航最后边框去掉****************/
$(".nav ul li").each(function(index, element) {
    $(this).find('dd:last a').css("border-right","none");
});

/*****************滚动*********************/ 
   $('#main_case_text').kxbdMarquee({
	direction:'left',
    controlBtn:{left:'#goL',right:'#goR'},
	scollAmount:0,
	newAmount:2,
	eventA:'mouseenter',
	eventB:'mouseleave'	
}); 


/*******************产品二级********************/	 
$("#firstpane p.menu_head").click(function()
    {
		$(this).next("div.menu_body").slideToggle(500).siblings("div.menu_body").slideUp("slow");
		$(".menu_head").removeClass("b_hover");
		$(this).addClass("b_hover");	
	});
	
});
