﻿var menuNow=null;
function showMenu(id){
	if(menuNow && id){
		menuNow.style.display = "none";
	}
	if(id){
		menuNow = document.getElementById('menu' + id); 
		menuNow.style.display = "";
	}
}

