startList = function() {
if(document.getElementById) {
	navRoot = document.getElementById("navigation");
	for(i=0; i<navRoot.childNodes.length; i++) {
		node = navRoot.childNodes[i];
		if(node.nodeName=="LI") {
			node.style.zIndex = 9000-i;
			node.onmouseover=function() {
				if(this.className == "" || this.className == null || this.className == "undefined" ) {
					this.className+="over";
				} else {
					this.className+=" over";
				}
			}
			node.onmouseout=function() {
				this.className=this.className.replace("over", "");
			}
			/*
			node.onkeypress=function() {
				this.className+="over";
			}
			*/
		}
	}
}
}
window.onload=startList;