var menuID = new Array();

function init(categorie) {
	
	for(indice=0;indice<categorie;indice++){
		menuID[indice] = 'm_' + (indice + 1);
	}
	hide();		
}


function hide(){
	for (var i in menuID){
		if(document.getElementById("s-"+menuID[i])!=null){
			document.getElementById("s-"+menuID[i]).style.display = "none";
		}
	}
}

var elTemp = "";

function hideSubMenu(el){
	el.parentNode.className=(el.parentNode.className=="show") ? "hide" : "show";

	if(el.id!=elTemp.id){
		el.parentNode.className=="show";
		elTemp = el;
	}
}
function init_sezione() {
	var menu_sezione_ID = ["s1","s2","s3","s4","s5"];
	for (var i in menu_sezione_ID)
	document.getElementById(menu_sezione_ID[i]).className = "";
}
function mostra(id) {
	if (document.getElementById("s-"+id)!=null && document.getElementById("s-"+id).style.display == "none") {
		hide();
		document.getElementById("s-"+id).style.display = "block";
	}
	//else hide()
}
function cambiaSezione(id) {
	if (document.getElementById(id).className == "") {
		init_sezione();
		document.getElementById(id).className = "voisietequi";
	}
}


/*da sistemare*/
	function goPageDettaglio(){
		location.href('dettaglio.php?catID=');
	}
