startList = function() {
	if (document.all&&document.getElementById) {
		navRoots=["nav","nav2"];
		for(var z=0; z<2; z++){
			navRoot = document.getElementById(navRoots[z]);
			if (navRoot!=null) {
				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.init[window.init.length]=startList;
