// JavaScript Document

$(document).ready(function(){
	
	$(".nav_global li a").mousemove(function(){
		if($(this).text()=='公司动态'){
			if($("#lay1").css('display')=='none'){
			$("#lay2,#lay3").hide('fast');
			$("#lay1").show('slow');
			$(this).everyTime('6s',function(){
				$("#lay1").hide('fast');
				});
			}
			}
			
		if($(this).text()=='产品展示'){
			if($("#lay2").css('display')=='none'){
			$("#lay1,#lay3").hide('fast');
			$("#lay2").show('slow');
			$(this).everyTime('6s',function(){
				$("#lay2").hide('fast');
				});
			}
			}
			
		if($(this).text()=='疫病防治'){
			if($("#lay3").css('display')=='none'){
			$("#lay2,#lay1").hide('fast');
			$("#lay3").show('slow');
			$(this).everyTime('6s',function(){
				$("#lay3").hide('fast');
				});
			}
			}
			
		});
		
		
		$("#lay1 li:last,#lay2 li:last,#lay3 li:last").css("border-bottom","1px #39C double");
	
	});
	
	
	
	
	
