function menuShow(id){
	document.getElementById('menu'+id).style.display = "block";
	return false;
}
function menuHide(id){
	document.getElementById('menu'+id).style.display = "none";
	return false;
}
function submenuShow(parentId, id) {
		document.getElementById('menu'+parentId).style.display = "block";
		document.getElementById('submenu'+id).style.display = "block";
		return false;
}
function submenuHide(parentId, id) {
		document.getElementById('menu'+parentId).style.display = "none";
		document.getElementById('submenu'+id).style.display = "none";
		return false;
}
function subsubmenuShow(parentId, id, subid) {
		document.getElementById('menu'+parentId).style.display = "block";
		document.getElementById('submenu'+id).style.display = "block";
		document.getElementById('subsubmenu'+subid).style.display = "block";
		return false;
}
function subsubmenuHide(parentId, id, subid) {
		document.getElementById('menu'+parentId).style.display = "none";
		document.getElementById('submenu'+id).style.display = "none";
		document.getElementById('subsubmenu'+subid).style.display = "block";
		return false;
}
