<!--//--><![CDATA[//><!--
function opennav(submenu) {
	navRoot = document.getElementById("menu");
	for (i=0; i<navRoot.childNodes.length; i++) {
		node = navRoot.childNodes[i];
		if (node.nodeName=="LI" && node == submenu) {
			node.className=node.className ="over";
		}
		else {
			node.className="hide";
		}
		//alert(node.nodeName + " "+ node.id + " : " + node.className)
	}
}


startList = function() {
		navRoot = document.getElementById("menu");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onclick=function() {
					opennav(this);
				}
			
			if (node.className.length==0) node.className="hide"
			}
		}
}
window.onload=startList;
//--><!]]>
