﻿function showSubMenu(){

	document.getElementById("subMenu1").style.display = "block";

}
function showSubSubMenu(){

	document.getElementById("subSubMenu1").style.display = "block";
	
}
function showanotherMenu1(){

	document.getElementById("anotherMenu1").style.display = "block";
	document.getElementById("subSubMenu1").style.display = "none";

}
function hideSubSubMenu(){

	document.getElementById("subSubMenu1").style.display = "none";
				
}
function hideSubSubMenu(){

	document.getElementById("anotherMenu1").style.display = "none";

}
function hideSubMenu(){

	document.getElementById("subMenu1").style.display = "none";
	document.getElementById("subSubMenu1").style.display = "none";
	document.getElementById("anotherMenu1").style.display = "none";

}