var intervalSHOW = "";
var intervalHIDE = "";
var Tempo_TimeOut = 500;

function ShowDiv(NumLivello){
	clearTimeout(intervalHIDE);
	intervalSHOW=setTimeout("ShowDivStart('" + NumLivello + "')",Tempo_TimeOut);
}

function HideDiv(NumLivello){
	clearTimeout(intervalSHOW);	
	intervalHIDE=setTimeout("HideDivStart('" + NumLivello + "')",Tempo_TimeOut);
} 

function HideDivProdotti(NumLivello){
	document.getElementById(NumLivello).style.visibility="hidden"
}

function ShowDivStart(NumLivello){
	if (NumLivello == "Liv_SottoMenuProdotti_1" || NumLivello == "Liv_SottoMenuProdotti_2" || NumLivello == "Liv_SottoMenuProdotti_3" || NumLivello == "Liv_SottoMenuProdotti_4" || NumLivello == "Liv_SottoMenuProdotti_5" || NumLivello == "Liv_Menu_1" || NumLivello == "Liv_Menu_3" || NumLivello == "Liv_Menu_4" || NumLivello == "Liv_Menu_5" || NumLivello == "Liv_Menu_6" || NumLivello == "Liv_Menu_7" || NumLivello == "Liv_Menu_8"){
		document.getElementById("Liv_SottoMenuProdotti_1").style.visibility="hidden";
		document.getElementById("Liv_SottoMenuProdotti_2").style.visibility="hidden";
		document.getElementById("Liv_SottoMenuProdotti_3").style.visibility="hidden";
		document.getElementById("Liv_SottoMenuProdotti_4").style.visibility="hidden";
		document.getElementById("Liv_SottoMenuProdotti_5").style.visibility="hidden";		
	}
	clearTimeout(intervalHIDE);
	document.getElementById("Liv_Menu_1").style.zIndex=0;
	document.getElementById("Liv_Menu_2").style.zIndex=0;
	document.getElementById("Liv_Menu_3").style.zIndex=0;
	document.getElementById("Liv_Menu_4").style.zIndex=0;
	document.getElementById("Liv_Menu_5").style.zIndex=0;
	document.getElementById("Liv_Menu_6").style.zIndex=0;
	document.getElementById("Liv_Menu_7").style.zIndex=0;	
	document.getElementById("Liv_Menu_8").style.zIndex=0;
	eval('document.getElementById("' + NumLivello + '").style.zIndex=2');
	document.getElementById("Liv_Menu_1").style.visibility="hidden";
	document.getElementById("Liv_Menu_2").style.visibility="hidden";
	document.getElementById("Liv_Menu_3").style.visibility="hidden";
	document.getElementById("Liv_Menu_4").style.visibility="hidden";
	document.getElementById("Liv_Menu_5").style.visibility="hidden";
	document.getElementById("Liv_Menu_6").style.visibility="hidden";
	document.getElementById("Liv_Menu_7").style.visibility="hidden";
	document.getElementById("Liv_Menu_8").style.visibility="hidden";		
	eval('document.getElementById("' + NumLivello + '").style.visibility="visible"')
}


function HideDivStart(NumLivello){
	clearTimeout(intervalSHOW);
	document.getElementById("Liv_Menu_1").style.visibility="hidden";
	document.getElementById("Liv_Menu_2").style.visibility="hidden";
	document.getElementById("Liv_Menu_3").style.visibility="hidden";
	document.getElementById("Liv_Menu_4").style.visibility="hidden";
	document.getElementById("Liv_Menu_5").style.visibility="hidden";
	document.getElementById("Liv_Menu_6").style.visibility="hidden";
	document.getElementById("Liv_Menu_7").style.visibility="hidden";
	document.getElementById("Liv_Menu_8").style.visibility="hidden";
	document.getElementById("Liv_SottoMenuProdotti_1").style.visibility="hidden";
	document.getElementById("Liv_SottoMenuProdotti_2").style.visibility="hidden";
	document.getElementById("Liv_SottoMenuProdotti_3").style.visibility="hidden";
	document.getElementById("Liv_SottoMenuProdotti_4").style.visibility="hidden";
	document.getElementById("Liv_SottoMenuProdotti_5").style.visibility="hidden";
	if(LayerAttuale != "Liv_Menu_0") eval('document.getElementById("' + LayerAttuale + '").style.visibility="visible"')
} 