// JavaScript Document

startList = function() {

	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
		node = navRoot.childNodes[i];
		if(document.getElementById("menuSelected") && document.getElementById("menuSelected").value == node.id){
		node.className="selected"
		}
			
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.style.zIndex = 1000
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.style.zIndex = 1
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;
