startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("menulist");
		for (var i = 0; i < navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName == "LI") {
				node.onmouseover = function() {
					var theClass = this.className;
					this.className = (theClass == "") ? "over" : theClass + " over";
				}
				node.onmouseout = function() {
					var theClass = this.className;
					this.className = (theClass == "over") ? "" : theClass.replace(" over", "");
				}
			}
		}
	}
}
window.onload = startList;
