// JavaScript Document

$(document).ready(function() {
	$('#mainContent .content .zoom').hide();
	$('#mainContent .content .allPic a').hover(
		function() {
			$('#mainContent .content .zoom').show();
			$('#mainContent .content .zoom').find('img').css({'width':400,'height':300});	
		},
		function() {
			$('#mainContent .content .zoom').hide();
			$('#mainContent .content .zoom').find('img').css({'width':240,'height':180});	
		}
	);
});

$("#mainMenu li").click(function(){  
	$("#mainMenu li").removeClass("hover");  
	$(this).addClass("hover");//添加选中样式  
	}).hover(  
	function(){  
	$(this).addClass("none"); //鼠标经过添加hover样式  
	},function(){  
	$(this).removeClass("none"); //鼠标离开移除hover样式  
});

$("#subNav li").click(function(){  
	$("#subNav li").removeClass("hover");  
	$(this).addClass("hover");//添加选中样式  
	}).hover(  
	function(){  
	$(this).addClass("none"); //鼠标经过添加hover样式  
	},function(){  
	$(this).removeClass("none"); //鼠标离开移除hover样式 
});




//$("ul#mainMenu li").hover(tab); 
//
//function tab() { 
//$(this).addClass("hover").siblings().removeClass("hover"); 
//var tab = $(this).attr("title"); 
//$("#" + tab).show().siblings().hide(); 
//};
//
//$("ul#subNav li").hover(tabTwo); 
//
//function tabTwo() { 
//$(this).addClass("hover").siblings().removeClass("hover"); 
//var tabTwo = $(this).attr("title"); 
//$("#" + tabTwo).show().siblings().hide(); 
//};


