
	//导航条下拉菜单
	$(".xls").mouseover(function(){
		$(this).show();
		$(this).find("li").mouseover(function(){
			$(this).css("background-color","#959595");
			if($(this).attr("class") == "pmenu"){
				$(this).siblings("li").children(".xlss").hide();
				$(this).children(".xlss").show(500);
			}
			return false;
		}).mouseout(function(){ 
			$(this).css("background-color","#A7A7A7");
			//$(".xlss").hide();
			//$(".xls").hide();
			return false;
		});
	}).mouseout(function(){
		//if(!($.browser.msie&&($.browser.version < 9)&&!$.support.style)){
			$(".xlss").hide();
			$(".xls").hide();
		//}
		return false;
	});
	
	$(".xl").mouseover(function(){
		$(".xlss").hide();
		$(".xls").hide();
		$(this).children(".xls").show();
		return false;
	});
	
	$("#pageMainAd").mouseover(function(){
		$(".xlss").hide();
		$(".xls").hide();
	});
	$("#pageMainAd1").mouseover(function(){
		$(".xlss").hide();
		$(".xls").hide();
	});
	
	
	//子菜单
	$("#subMenu .menu1 li").mouseover(function(){
		if(!$(this).hasClass("title")){
			$(this).addClass("subMenuOver");
		}
		return false;
	}).mouseout(function(){
		$(this).removeClass("subMenuOver");
		return false;
	});
	
	//菜单
	$("a").click(function(){
		var text = '';
		if($(this).attr("href") == "###"){
			text = $(this).text();
			text = text.replace(" ","");
			text = text.replace("/","");
			text = text.replace("  ","");
			$(this).attr("href", text + ".html");	
		}
	});


	

