startList = function() {
	if (document.all && document.getElementById) {
		navRoot = document.getElementById("mainnavlist");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					clearTimeout();
					this.className+=" over";
				}
				node.onmouseout=function() {
					var nodetoclear = this;
					setTimeout('clearAll()' , 100);
					//this.className=this.className.replace(" over", "")
				}
			}
		}
	}
}
clearAll = function() {
	if (document.all && document.getElementById) {
		navRoot = document.getElementById("mainnavlist");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.className=node.className.replace(" over", "")
			}
		}
	}
}
//window.onload=startList();