startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("categories_top");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
					// You can uncomment this code to hide dropdown menus which appear over the menus in IE6 (due to a bug in IE6)
					//document.getElementById("sortMethod").style.visibility = "hidden";
				}
				node.onmouseout=function() {
					this.className=this.className.replace (" over", "");
					// You can uncomment this code to hide dropdown menus which appear over the menus in IE6 (due to a bug in IE6)
					//document.getElementById("sortMethod").style.visibility = "visible";
				}
			}
		}
	}
}