function goto(nome)
{
	if(nome == 'email')
		location.href= 'mailto:info@gedigroup.eu';
	else
	if(nome == 'listini')
		location.href = 'http://213.203.141.200/metain';
	else	
		location.href = nome;
}

function toggleProdotti(nome)
{
	var elemento = document.getElementById("prodotti"+nome);
	var categoria = document.getElementById("categoria"+nome);
	if(elemento.style.position == "absolute")
	{
		elemento.style.position = "relative";
		elemento.style.visibility = "visible";
		categoria.style.listStyleImage = "url(immagini/meno.gif)";
	}else
	{
		elemento.style.position = "absolute";
		elemento.style.visibility = "hidden";
		categoria.style.listStyleImage = "url(immagini/piu.gif)";	
	}
}

function initializeProdotti()
{
	for(i=1; i < 8; i++)
	{
		var elemento = document.getElementById("prodotti"+i);
		var categoria = document.getElementById("categoria"+i);
		elemento.style.position = "absolute";
		elemento.style.visibility = "hidden";
		categoria.style.listStyleImage = "url('immagini/piu.gif')";
	}
}