//	jQuery(function(){
		var url=document.location.pathname;
		//alert(document.location.hostname);
		//alert(url);
		if(url!=null && url!=""){	
			//alert(jQuery("div[id='menus'] ul li").size());
			jQuery("div[id='menus'] ul li").each(function(){
			var href=jQuery(this).find("a").attr("href");
		//		alert(' href='+href+' url='+url);
				if(href==url){ //路径相等
				jQuery(this).addClass("down");
				return false;
				}
			});
		}
//	}); 
