// JavaScript Document
function URLencode(sStr) 
{
    return escape(sStr).
             replace(/\+/g, '%2B').
                replace(/\"/g,'%22').
                   replace(/\'/g, '%27').
                     replace(/\//g,'%2F');
}



/* 

这是把事件动作绑定到菜单上的函数
*/
function attachXMenu(objid){
	var tds=objid.getElementsByTagName('li');
	for(var i=0;i<tds.length;i++){
		with(tds[i]){
			onmouseover=function(){
				with(this){
					style.background='#f1f1f1'; //这是鼠标移上去时的背景颜色

				}
			}
			onmouseout=function(){
				with(this){
                    style.background='url(/images/list.jpg) repeat-x bottom';
				}
			}
		}
	}
}
