$(document).ready(function(){

	//$("#nav ul").hide();
	$("#nav li").mouseover(function(){$(this).children("ul").show();});
	$("#nav li").mouseout(function(){$(this).children("ul").hide();});
	
	//获取本地年、月、日
	var today=new Date();
	var year = today.getFullYear();
	var month = today.getMonth()+1;
	var date = today.getDate();
	$(".today").prepend(year+"年"+month+"月"+date+"日");
	
	//匹配高度
	$(".pageMenuBottom").height($(".pageContent").height()-20);

});

