function clickMenu(menu) {
	rootOBJDisplay = document.getElementsByTagName("div")[menu].style.display;
	if (rootOBJDisplay == 'block') rootOBJDisplay="none";
	else if (rootOBJDisplay=="" || rootOBJDisplay=="none") rootOBJDisplay='block';
	document.getElementsByTagName("div")[menu].style.display = rootOBJDisplay;
}


/* var hideTimer = false;
function clickMenu(menu) {
	if(hideTimer){
		hideTimer = window.clearTimeout(hideTimer);
	}
	closeMenus();
	rootOBJDisplay = document.getElementById(menu).style.display;

	if (rootOBJDisplay=="" || rootOBJDisplay=="none") {
		rootOBJDisplay='block';
	}

	document.getElementById(menu).style.display = rootOBJDisplay;		
}

function menuRollOut(){
	if(hideTimer){
		hideTimer = window.clearTimeout(hideTimer);
	}
	hideDelay = 1000;
	hideTimer = window.setTimeout("closeMenus()", hideDelay);
}

function menuTimerReset(){
	if(hideTimer){
		hideTimer = window.clearTimeout(hideTimer);
	}
}

function closeMenus(){
	document.getElementById('g2sub').style.display="none";
	document.getElementById('g3sub').style.display="none";
	document.getElementById('g4sub').style.display="none";
	document.getElementById('g5sub').style.display="none";
} */