/*function idPagina() { 
	var indirizzo=window.location;
	collegamenti=document.getElementsByTagName("A");
	
	//alert(collegamenti[3].href);
	for (i=0; i<=collegamenti.length ; i++) {
		if (collegamenti[i].href == indirizzo && collegamenti[i].href != null ) {
			collegamenti[i].setAttribute("class", "corrente");
		
		}
		
	}
		
}
*/


function nascondi(){ 
	var elementi=new Array("biblio", "info", "organizzazione", "patrimonio", "accesso_info", "attivita", "servizi", "bgonlus");
	for(var i=0;i<elementi.length;i++)
	{
		document.getElementById(elementi[i]).className="sottolivello";
	} 
}

function cambiaDisplay(id)
{
	if(document.getElementById(id).className=="sottolivello")
	{
		document.getElementById(id).className="sottolivello_";
	}
	else 
	{
		document.getElementById(id).className="sottolivello";
	}
}
/*
function CambiaClasse(id,classe){
	document.getElementById(id).className=classe;
	}
*/