// ::: FUNÇÕES DO MENU ABAS :::	
	
	function showMenuHome() {
	  document.getElementById("a-home").className = "currentHome";
	}
	function hideMenuHome() {
	  document.getElementById("a-home").className = "home";
	}
	function showMenuInstitucional() {
      document.getElementById("menuInstitucional").style.display = "block";
	  document.getElementById("menuInstitucional").style.zIndex = "999";
	  document.getElementById("a-institucional").className = "currentInstitucional";
	}
	function hideMenuInstitucional() {
      document.getElementById("menuInstitucional").style.display = "none";
	  document.getElementById("a-institucional").className = "institucional";
	}
	function showMenuAreaRestrita() {
	  document.getElementById("menuAreaRestrita").style.display = "block";
	  document.getElementById("menuAreaRestrita").style.zIndex = "999";
	  document.getElementById("a-areaRestrita").className = "currentAreaRestrita";
	}
	function hideMenuAreaRestrita() {
      document.getElementById("menuAreaRestrita").style.display = "none";
	  document.getElementById("a-areaRestrita").className = "areaRestrita";
	}
	function showMenuAdm() {
	  document.getElementById("a-adm").className = "currentAdm";
	}
	function hideMenuAdm() {
	  document.getElementById("a-adm").className = "adm";
	}
	/*function showMenuMapa() {
	  document.getElementById("a-mapa").className = "currentMapa";
	}
	function hideMenuMapa() {
	  document.getElementById("a-mapa").className = "mapa";
	}*/
