startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("menu").childNodes[0];
		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(node.childNodes.length==3)
				{
					subnavRoot = node.childNodes[2];
					for (j=0; j<subnavRoot.childNodes.length; j++) {
						subnode = subnavRoot.childNodes[j];
						if (subnode.nodeName=="LI") {
							subnode.onmouseover=function() { this.className+=" over"; }
							subnode.onmouseout=function() { this.className=this.className.replace(" over", ""); }						
							if(subnode.childNodes.length==3)
							{
								subsubnavRoot = subnode.childNodes[2];
								for (k=0; k<subsubnavRoot.childNodes.length; k++) {
									subsubnode = subsubnavRoot.childNodes[k];
									if (subsubnode.nodeName=="LI") {
										subsubnode.onmouseover=function() { this.className+=" over"; }
										subsubnode.onmouseout=function() { this.className=this.className.replace(" over", ""); }
										
									}
								}
							}
						}
					}
				}
			}
		}
	}
}
window.onload=startList;

