<!--
var DivAperto=0;

function Apri(n) {
  if (DivAperto !=0)  {  //  QUANDO E' CHIUSO ALL'INIZIO
	  document.getElementById("ds"+DivAperto).style.display = "none";
	  document.getElementById("a"+DivAperto).style.borderBottom= "none";
	  document.getElementById("d"+DivAperto).style.backgroundColor= "transparent";
  } 
  if (DivAperto !=n)  {  //  QUANDO IL MENU E' APERTO
	document.getElementById("ds"+n).style.display = "block";
	document.getElementById("a"+n).style.borderBottom= "3px solid #B22222";
	document.getElementById("d"+n).style.backgroundColor= "#EEEEEE";
	DivAperto=n;
  }	
  else	{  //  RIPORTA DIVAPERTO=0
	//document.getElementById("ds"+n).style.display = "none";
	//document.getElementById("a"+n).style.borderBottom= "2px solid white";
	//document.getElementById("d"+n).style.backgroundColor= "transparent";
	DivAperto=0;
  }
}
-->