function chiudiMenu(){
	var appo, str_divCorr, test, fine	
		
	appo = document.getElementsByTagName("div")

	for(var i=0;i<appo.length;i++){
		str_divCorr = appo[i].getAttribute("id");

		if (str_divCorr != null) {
			inizio = str_divCorr.length;

			if (str_divCorr.length > 7){
				test = str_divCorr.substr(0,7)
				fine = str_divCorr.substr((inizio-3),3)

				if ((test=="divMenu") && (fine!="off")) {
					document.getElementById(str_divCorr).style.display = 'none';
				}
				else{
					document.getElementById(str_divCorr).style.display = '';
				}
			}
		}
	}
}


function espandiMenu(intDiv){
	// funzione per l'espansione del menu laterale	
        
	chiudiMenu();

	if (document.getElementById("divMenu_" + intDiv)!=null) {
		if ((document.getElementById("divMenu_" + intDiv).style.display == 'none') || (iForzaLaVisibilita == '1')) {
			document.getElementById("divMenu_" + intDiv).style.display = '';
		}
		else{			
			document.getElementById("divMenu_" + intDiv).style.display = 'none';
		}
		ApriIcona(intDiv)
		ApriFreccia(intDiv)
	}
	
}

function ApriIcona(intDiv){
	appoimg = "img" + intDiv
	if (document.getElementById(appoimg)!=null) {
		var srcAppo = new String
		srcAppo = document.getElementById(appoimg).src
		srcAppo =srcAppo.replace("Chiusa","Aperta")
		document.getElementById(appoimg).src=srcAppo
	}
	
}

function ChiudiIcona(intDiv){
	appoimg = "img" + intDiv
	
	if (document.getElementById(appoimg)!=null) {
		var srcAppo = new String
		srcAppo = document.getElementById(appoimg).src
		srcAppo =srcAppo.replace("Aperta","Chiusa")
		document.getElementById(appoimg).src=srcAppo
	}
}

function ApriFreccia(intDiv){
	appoimg = "imgFreccia" + intDiv
	if (document.getElementById(appoimg)!=null) {
		document.getElementById(appoimg).src="/immagini/" + curSection + "/FrecciaSelezionata.gif"
		
	}
}

function ChiudiFreccia(intDiv){
	appoimg = "imgFreccia" + intDiv
	
	if (document.getElementById(appoimg)!=null) {
		document.getElementById(appoimg).src="/immagini/" + curSection + "/Freccia.gif"
		
	}

}

function settaMenuCorrente(id) {
	//alert(id)
	if (currMenuId != '0') {
		if (document.getElementById("tblMenu_" + currMenuId)!=null) {
			document.getElementById("tblMenu_" + currMenuId).className='menu-tendina';
		}
	}

	currMenuId = id;
       
}

function menuMouseOut(obj,id) {
	if (id == currMenuId) {
		obj.className='menu-tendinaover';
	}
	else {
		obj.className='menu-tendina';
	}
}
