var cUrl=window.location.pathname; //取得当前文件名
tmpHPage = cUrl.split( "/" );  
thisHPage = tmpHPage[ tmpHPage.length-1 ].replace(".php","").toLowerCase(); 

if  ( document.getElementById("bmenu") ) {

var tli=document.getElementById("bmenu").getElementsByTagName("a");
for(i=0;i<tli.length;i++){
     var  curUrl=tli[i].href;
	 curUrl=curUrl.split("/");
	 curUrl = curUrl[ curUrl.length-1 ].replace(".php","").toLowerCase();  
/*	if (curUrl==thisHPage || (curUrl+"_more")==thisHPage) {
		tli[i].className="link_07";
		}*/
			if (curUrl==thisHPage) {
		tli[i].className="menu_cur";
		}	
}
}