function startmenu()
{
	var i=0;
	for(i=1; i<18; i++) {
		if (document.getElementById('menu' + i) != null)
		document.getElementById('menu' + i).style.display = "none";
  }

	return false;
}

function menufunc(menuId)
{
	if(document.getElementById(menuId).style.display == "none")
	{
		startmenu();
		document.getElementById(menuId).style.display = "block";
	}
	else
	{
		startmenu();
	}
}

/*
function showmenu(ID_categoria, ID_sotto_categoria) {
		
		var getUrl = site_root+"preview.php?ID_categoria=" + ID_categoria + "&ID_sotto_categoria=" + ID_sotto_categoria;
		new Ajax.Updater("show_prodotti", getUrl);	

	  if((document.getElementById('details_prodotti') != null) && (document.getElementById('details_prodotti').style.display == "none")) {
	  	document.getElementById('show_all').style.display = "none";	
			document.getElementById('details_prodotti').style.display = "block";		
		} 

return false;	
}

function search_prodotti(ID_categoria, ID_sotto_categoria, Page) {

		var getUrl = site_root+"preview.php?ID_categoria=" + ID_categoria + "&ID_sotto_categoria=" + ID_sotto_categoria + "&Page=" + Page;
		new Ajax.Updater("show_prodotti", getUrl);

		if((document.getElementById('details_prodotti') != null) && (document.getElementById('details_prodotti').style.display == "none")) {
			document.getElementById('show_all').style.display = "none";	
			document.getElementById('details_prodotti').style.display = "block";		
		} 

return false;	
}

function details_prodotti(ID_prodotto, ID_categoria, ID_sotto_categoria, Page) {	

		var getUrl = site_root+"vendita.php?id_prodotto=" + ID_prodotto + "&ID_categoria=" + ID_categoria + "&ID_sotto_categoria=" + ID_sotto_categoria + "&Page=" + Page;
		new Ajax.Updater("show_all", getUrl);

		if((document.getElementById('show_all') != null) && (document.getElementById('show_all').style.display == "none")) {
			document.getElementById('details_prodotti').style.display = "none";	
			document.getElementById('show_all').style.display = "block";
		} 
		
return false;	
}

function home_prodotti(ID_prodotto) {	
	
		var getUrl = site_root+"vendita.php?id_prodotto=" + ID_prodotto;
		new Ajax.Updater("show_all", getUrl);	
		
		if((document.getElementById('details_prodotti') != null) && (document.getElementById('details_prodotti').style.display != "none")) {
			document.getElementById('details_prodotti').style.display = "none";		
			document.getElementById('show_all').style.display = "block";	
		} 
				
return false;	
}

function prodottidaricerca (ID_prodotto, marca, prodotto, page) {	
	
		var getUrl = site_root+"vendita.php?id_prodotto=" + ID_prodotto + "&marca=" + marca + "&prodotto=" + prodotto + "&page=" + page;
		new Ajax.Updater("show_all", getUrl);	
		
		if((document.getElementById('details_prodotti') != null) && (document.getElementById('details_prodotti').style.display != "none")) {
			document.getElementById('details_prodotti').style.display = "none";		
			document.getElementById('show_all').style.display = "block";	
		} 
				
return false;	
}

function page_prodotto(prodotto, page) {	
	
		var getUrl = site_root+"ricerca.php?prodotto=" + prodotto + "&Page=" + page;
		new Ajax.Updater("show_prodotti", getUrl);

		if((document.getElementById('details_prodotti') != null) && (document.getElementById('details_prodotti').style.display == "none")) {
			document.getElementById('show_all').style.display = "none";	
			document.getElementById('details_prodotti').style.display = "block";		
		} 
				
return false;	
}

function page_marca(marca, page) {	
	
		var getUrl = site_root+"ricerca.php?marca=" + marca + "&Page=" + page;		
		new Ajax.Updater("show_prodotti", getUrl);

		if((document.getElementById('details_prodotti') != null) && (document.getElementById('details_prodotti').style.display == "none")) {
			document.getElementById('show_all').style.display = "none";
			document.getElementById('details_prodotti').style.display = "block";		
		} 
				
return false;	
}


*/




