
/* ******* FLY OUTS ******* */
function showMenu(theID) {
	var divId = document.getElementById(theID);
	divId.style.display = 'block';
}

function hideMenu(theID) {
	var divId = document.getElementById(theID);
	divId.style.display = 'none';
}
