// JavaScript Document
var menuPos = ""
window.onload = function()
{  
	//alert("si")
	var strCook = document.cookie;  
 	if(strCook.indexOf("!~") != -1)
	{  
		var intS = strCook.indexOf("!~");  
 		var intE = strCook.indexOf("~!");  
 		menuPos += strCook.substring(intS+2,intE)
		//alert(strCook)
		var menuarray = new Array()
		menuarray = menuPos.split(",")
		for (var i=0; i <= menuarray.length; i++)
		{
			if (document.getElementById(menuarray[i]))
			{
				document.getElementById(menuarray[i]).style.display="block"
				if (document.getElementById(menuarray[i] + "_img").src.indexOf('freccia_bianca') > -1)
				{
					document.getElementById(menuarray[i] + "_img").src = "../images/freccia_bianca_giu.png"
				} 
				if (document.getElementById(menuarray[i] + "_img").src.indexOf('freccia_blu') > -1)
				{
					document.getElementById(menuarray[i] + "_img").src = "../images/freccia_blu_giu.png"
				}
			}
			//alert(i + "\n")
			//alert(menuarray[i])
		}
	}
	else
	{
		menuPos = ","	
	}
}  
function SetMenuPosition(voce,linker)
{  
	//alert(menuPos)
	if (menuPos.indexOf(voce) > -1)
	{
		menuPos = menuPos.replace("," + voce + ",",",")
		document.getElementById(voce).style.display="none"
		if (document.getElementById(voce + "_img").src.indexOf('freccia_bianca') > -1 )
		{
			document.getElementById(voce + "_img").src = "../images/freccia_bianca_dx.png"
		} 
		if (document.getElementById(voce + "_img").src.indexOf('freccia_blu') > -1)
		{
			document.getElementById(voce + "_img").src = "../images/freccia_blu_dx.png"
		}
		//alert("chiudi")
	}
	else
	{
		menuPos = menuPos + voce + ","
		document.getElementById(voce).style.display="block"
		if (document.getElementById(voce + "_img").src.indexOf('freccia_bianca') > -1)
		{
			document.getElementById(voce + "_img").src = "../images/freccia_bianca_giu.png"
		} 
		if (document.getElementById(voce + "_img").src.indexOf('freccia_blu') > -1)
		{
			document.getElementById(voce + "_img").src = "../images/freccia_blu_giu.png"
		}
		//alert("apri")
	}
	//alert(menuPos)
	document.cookie = "menuPos=!~" + menuPos + "~!";
	if (linker!='')
	{
		location.href=linker
	}
}
