function startList() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("ohauNav");
		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", "");
				}
				children=node.childNodes;
				for (j=0;j<children.length;j++) {
					child=children[j];
					if (child.nodeName=="UL") {
						for (k=0; k<child.childNodes.length; k++) {
							childItem = child.childNodes[k];
							if (childItem.nodeName=="LI") {
								childItem.onmouseover=function() {
									this.className+=" over";
								}
								childItem.onmouseout=function() {
									this.className=this.className.replace(" over", "");
								}
							}
						}
					}
				}
			}
		}
	}
}
//window.onload=startList;

window.init[window.init.length]=function(){startList();}