$(document).ready(function() {
	// do something here
	
	//特色数据和特色产业
	$("#data").hover(function(){
			document.getElementById("traitMore").innerHTML="<a href='pagination.do?paginationName=TraitData' target='_blank'>\u66F4\u591A&gt;&gt;</a>";
			$("#industry").removeClass("highlight2");
			$(this).addClass("highlight1");	
			$("#dataShow").css({display:"block"});
			$("#IndustryShow").css({display:"none"});
			
			},function(){			
			//$(this).removeClass("highlight1");
			//$(this).addClass("no_highlight1");
	});
	$("#industry").hover(function(){
			document.getElementById("traitMore").innerHTML="<a href='pagination.do?paginationName=TraitIndustry' target='_blank'>\u66F4\u591A&gt;&gt;</a>";
			$("#data").removeClass("highlight1");
			$(this).addClass("highlight2");	
			$("#IndustryShow").css({display:"block"});
			$("#dataShow").css({display:"none"});
			},function(){
			//$(this).removeClass("highlight2");
			//$("#data").addClass("highlight1");
			
			
	});
	
	//技术供求
	$("#tech_supply").hover(function(){
			
			$("#tech_demand").removeClass("Date12px_amplify");
			$("#tech_demand").addClass("Date12px");
			$(this).removeClass("Date12px");
			$(this).addClass("Date12px_amplify");
			$("#tech_supplyShow").css({display:"block"});
			$("#tech_demandShow").css({display:"none"});	

			document.getElementById("techMore").innerHTML="<a href='pagination.do?paginationName=TechnologySupply' target='_blank'>\u66F4\u591A&gt;&gt;</a>";
			},function(){
	
	});
	$("#tech_demand").hover(function(){
			$(this).removeClass("Date12px");
			$(this).addClass("Date12px_amplify");
			$("#tech_supply").removeClass("Date12px_amplify");	
			$("#tech_supply").addClass("Date12px");	
			$("#tech_demandShow").css({display:"block"});
			$("#tech_supplyShow").css({display:"none"});

			document.getElementById("techMore").innerHTML="<a href='pagination.do?paginationName=TechnologyDemand' target='_blank'>\u66F4\u591A&gt;&gt;</a>";
			},function(){
	
	});
	
	
	//上层菜单变化
	$("#index_item").hover(function(){
			$("#tibet_science").css({display:"none"});
			$("#tibet_subject").css({display:"none"});
			$("#science_exhibit").css({display:"none"});
			$("#science_service").css({display:"none"});
			$("#index").css({display:"block"});
			},function(){
			
			
	});
	$("#tibet_science_item").hover(function(){
			$("#tibet_science").css({display:"block"});
			$("#tibet_subject").css({display:"none"});
			$("#science_exhibit").css({display:"none"});
			$("#science_service").css({display:"none"});
			$("#index").css({display:"none"});
			},function(){//Êó±êÀë¿ªµÄ²Ù×÷
			
			
			
	});
	$("#tibet_subject_item").hover(function(){
			$("#tibet_science").css({display:"none"});
			$("#tibet_subject").css({display:"block"});
			$("#science_exhibit").css({display:"none"});
			$("#science_service").css({display:"none"});
			$("#index").css({display:"none"});
			},function(){
			
			
	});
	$("#science_exhibit_item").hover(function(){
			$("#tibet_science").css({display:"none"});
			$("#tibet_subject").css({display:"none"});
			$("#science_exhibit").css({display:"block"});
			$("#science_service").css({display:"none"});
			$("#index").css({display:"none"});
			},function(){
			
			
	});
	$("#science_service_item").hover(function(){
			$("#tibet_science").css({display:"none"});
			$("#tibet_subject").css({display:"none"});
			$("#science_exhibit").css({display:"none"});
			$("#science_service").css({display:"block"});
			$("#index").css({display:"none"});
			},function(){
			
			
	});
	
	
});

//function load(){
//	document.getElementById("data").addClass("highlight1");
//}

