// JavaScript Document

//NASCONDO TUTTI I SUBMENU
function hideSubMenu()
{
	window.document.getElementById("subMenu1").style.visibility = "hidden";
	window.document.getElementById("subMenu2").style.visibility = "hidden";
	window.document.getElementById("subMenu3").style.visibility = "hidden";
	window.document.getElementById("subMenu4").style.visibility = "hidden";	
}

//subMenu1 ..... INFO
function viewInfo()
{
	window.document.getElementById("subMenu1").style.visibility = "visible";
	window.document.getElementById("subMenu2").style.visibility = "hidden";
	window.document.getElementById("subMenu3").style.visibility = "hidden";
	window.document.getElementById("subMenu4").style.visibility = "hidden";
}

//subMenu2 ..... SETTORI
function viewSettori()
{
	window.document.getElementById("subMenu1").style.visibility = "hidden";
	window.document.getElementById("subMenu2").style.visibility = "visible";
	window.document.getElementById("subMenu3").style.visibility = "hidden";
	window.document.getElementById("subMenu4").style.visibility = "hidden";
}

//subMenu3 ..... REFERENZE
function viewReferenze()
{
	window.document.getElementById("subMenu1").style.visibility = "hidden";
	window.document.getElementById("subMenu2").style.visibility = "hidden";
	window.document.getElementById("subMenu3").style.visibility = "visible";
	window.document.getElementById("subMenu4").style.visibility = "hidden";
}

//subMenu4 ..... TEAM
function viewTeam()
{
	window.document.getElementById("subMenu1").style.visibility = "hidden";
	window.document.getElementById("subMenu2").style.visibility = "hidden";
	window.document.getElementById("subMenu3").style.visibility = "hidden";
	window.document.getElementById("subMenu4").style.visibility = "visible";
}

//GESTIONE DEL ROLLOVER BTN INFO SULL'APERTURA DEL SUBMENU
function infMenuHover()
{
	window.document.getElementById("InfoHover").style.visibility = "visible";
}

function hideInfMenuHover()
{
	window.document.getElementById("InfoHover").style.visibility = "hidden";
}

//GESTIONE DEL ROLLOVER BTN SETTORI SULL'APERTURA DEL SUBMENU
function setMenuHover()
{
	window.document.getElementById("SettoriHover").style.visibility = "visible";
}

function hideSetMenuHover()
{
	window.document.getElementById("SettoriHover").style.visibility = "hidden";
}

//GESTIONE DEL ROLLOVER BTN REFERENZE SULL'APERTURA DEL SUBMENU
function refMenuHover()
{
	window.document.getElementById("ReferenzeHover").style.visibility = "visible";
}

function hideRefMenuHover()
{
	window.document.getElementById("ReferenzeHover").style.visibility = "hidden";
}

//GESTIONE DEL ROLLOVER BTN REFERENZE SULL'APERTURA DEL SUBMENU
function teamMenuHover()
{
	window.document.getElementById("TeamHover").style.visibility = "visible";
}

function hideTeamMenuHover()
{
	window.document.getElementById("TeamHover").style.visibility = "hidden";
}

