

// Drop Menu Script //////////////////////////////////////////

function ShowHideMenu(menu){
				 targetMenu = document.getElementById(menu);
				 targetMenu.style.visibility == "visible"?
				 targetMenu.style.visibility = "hidden":
				 targetMenu.style.visibility = "visible";
}