// Flyout menus
var ActiveMenu = null;
var closeMenu;
var recIsOpen = false;

function showTheMenu(menuNum) {
	clearTimeout(closeMenu);	
		var whichMenu = parseInt(menuNum);
			if (ActiveMenu != null) {
				//document.getElementById("menuF" + ActiveMenu).style.backgroundColor="#603";
				//document.getElementById("menuF" + ActiveMenu).style.color="#FFF";
			}	
			var flyoutContainer = document.getElementById("flyout_container");
			flyoutContainer.style.display="block";
			//document.getElementById("leftpane").style.overflow = "visible";
			flyoutContainer.innerHTML = flyoutArray[whichMenu - 1];
			var highlightLink = document.getElementById("menuF" + whichMenu);
			//highlightLink.style.backgroundColor="#FFF";	highlightLink.style.color="#000";
			ActiveMenu = whichMenu;
}
function hideTheMenu() {
	document.getElementById("flyout_container").innerHTML = "";
	document.getElementById("flyout_container").style.display="none";
	//document.getElementById("leftpane").style.overflow = "hidden";
	var highlightLink = document.getElementById("menuF" + ActiveMenu);
	//highlightLink.style.backgroundColor="#603";
	//highlightLink.style.color="#FFF";
	ActiveMenu = null;
}