cmdHover = function() {
	var cmdList = document.getElementById("browsing-1").getElementsByTagName("LI");
	for (var i=0; i<cmdList.length; i++) {
		cmdList[i].onmouseover=function() {
			this.className+=" cmdhover";
		}
		cmdList[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" cmdhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", cmdHover);