function settatutto() {
	if (document.getElementById) {
		navRoot=document.getElementById('persone');
		for (i=0; i<navRoot.childNodes.length; i++) {
			if ((navRoot.childNodes[i].nodeName=='LI')) {
				navRoot.childNodes[i].className='chiuso';
			}
		}
	}
}

function switchdettaglio(idil) {
	if (document.getElementById) {
		if (document.getElementById(idil).className=='aperto' )
			document.getElementById(idil).className='chiuso';
		else
			document.getElementById(idil).className='aperto';
	}
}

window.onload=settatutto;
