startList = function() {
	if (document.all&&document.getElementById) {
		if(document.getElementById("primaryNav") != null){
			if(document.getElementById("primaryNav") != null){
				navRoot = document.getElementById("primaryNav");
				for (i=0; i<navRoot.childNodes.length; i++) {
					node = navRoot.childNodes[i];
					if (node.nodeName=="LI") {
						node.onmouseover=function() {
							this.className+=" over";
						}
						node.onmouseout=function() {
							this.className=this.className.replace(" over", "");
						}
					}
				}
			}
		}

		if (document.all&&document.getElementById) {
			if(document.getElementById("secondaryNav") != null){
				navRoot = document.getElementById("secondaryNav").getElementsByTagName("li");
				for (i=0; i<navRoot.length; i++) {
					node = navRoot[i];
					if (node.nodeName=="LI") {
						node.onmouseover=function() {
							if (this.className != "vertcrumb") {
								this.className+=" over";
							}
						}
						node.onmouseout=function() {
							this.className=this.className.replace(" over", "");
						}
					}
				}
			}
		}	
	}
}
window.onload=startList;