// JavaScript Document

function hideAllMenus() {
	menuDivName = "submenu";
	menuroot = document.getElementById(menuDivName);
	thenodelist = document.getElementById(menuDivName).childNodes;
	for (i=0; i < thenodelist.length; i++) {
		node = thenodelist[i];
		if (node.nodeName=="UL"){
			node.className = "hideit";	
		}
	}
	
}
function showMenu(menuId) {
	menuref = document.getElementById(menuId);	
	hideAllMenus();
	menuref.className = "showit";
}
window.onload=hideAllMenus;
