var startList;

startList = function() {
	if (document.all && document.getElementById && (navigator.appName != "Opera") && (typeof window.opera == "undefined")) {
		navRoot = document.getElementById("navi");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="TD") {
				node.onmouseover=function() {
					this.className="over";
			  	}
				node.onmouseout=function() {
			  		this.className=this.className.replace("over", "");
			   }
			}
		}
	}
}

function submenus(node) {
	if (document.all && document.getElementById && (navigator.appName != "Opera") && (typeof window.opera == "undefined")) {
		for( i=0; i<node.childNodes.length; i++ ) {
			if( node.childNodes[i].nodeName == "UL" ) {
				//alert(node.childNodes[i].className);
				node.childNodes[i].className += " over";
				//alert(node.childNodes[i].className);
			}
		}
		node.onmouseout = function() {
			for( i=0; i<node.childNodes.length; i++ ) {
				if( node.childNodes[i].nodeName == "UL" && node.childNodes[i].className && node.childNodes[i].className.indexOf("over") > -1 ) {
					node.childNodes[i].className = node.childNodes[i].className.replace(" over", "");
				}
			}
		}
	}
}
