<!--//--><![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"
			}
		}
}


if(document.addEventListener || window.addEventListener){
	if(document.addEventListener){
		document.addEventListener("load", startList, false);	
	}
	if(window.addEventListener){
		window.addEventListener("load", startList, false);	
	}
} else {
	if(typeof window.onload == "function"){
		var fOld = window.onload;
		window.onload = function(){ fOld(); startList; }
	} else {
		window.onload = startList;
	}
}
//--><!]]>