showMenu = function(id){
	document.getElementById(id).style.visibility = "visible";
}

hideMenu = function(id){
	document.getElementById(id).style.visibility = "hidden";
}