function visibleMenu(n){
	var menu = "menu"+n;
	document.getElementById(menu).style.visibility = "visible";
}
function hiddenMenu(n){
	var menu = "menu"+n;
	document.getElementById(menu).style.visibility = "hidden";
}
