// nav and quickMenu
//  $(function(){
//	$(".nav li>a").eq(navTag).css({"color":"#fff", "font-weight":"bold", "font-size":"14px"});
//  })
//新换的代码
$(function(){if(navTag <=8){
	$(".nav li>a").eq(navTag).css({"color":"#fff", "font-weight":"bold", "font-size":"14px"});
	}

	$(".nav li:eq(2),.nav li:eq(4)").hover(
		function () {
			$(this).find("#sub01,#sub02").show();
			$(this).css({"background-color":"#fff","position":"relative","top":"1px","left":"0px"})
			$(this).find("a:first").css({"color":"#328adb","font-weight":"bold"})
			$("#sub03 h2:eq(3)").addClass("w03")
			$("#sub03 h2:last").css({"background":"none"})
		},
		function () {
			$(this).find("#sub01,#sub02").hide();
			$(this).css({"background-color":"","position":"relative","top":"0px","left":"0px"})
			$(this).find("a:first").css({"color":"#ffffff","font-weight":"bold"})
			$("#sub03 h2:eq(3)").addClass("w03")
			$("#sub03 h2:last").css({"background":"none"})			
		})
	


})


