function prod(n)
{
		azzera();
		with(document)
		{
			getElementById('prod'+n).style.color = "#85010a";
			getElementById('prodotto').style.visibility = "visible";
			getElementById('prodotto'+n).style.visibility = "visible";

		}
}


function zoom(c,d)
{
	if (c == 0)
	{
		with(document)
		{
			getElementById('prodotto'+d).style.visibility = "hidden";
			getElementById('zoom'+d).style.visibility = "visible";
		}
	} else if (c == 1) {
		with(document)
		{
			getElementById('prodotto'+d).style.visibility = "hidden";
			getElementById('prodotto').style.visibility = "hidden";
			getElementById('prod'+d).style.color = "#898d3f";
		}
	} else {
		with(document)
		{
			getElementById('zoom'+d).style.visibility = "hidden";
			getElementById('prodotto'+d).style.visibility = "visible";
		}
	}
}

function azzera()
{
	with(document)
	{
		getElementById('prod1').style.color = "#898d3f";
		getElementById('prod2').style.color = "#898d3f";
		getElementById('prod3').style.color = "#898d3f";
		getElementById('prod4').style.color = "#898d3f";
		getElementById('prod5').style.color = "#898d3f";
		getElementById('prod6').style.color = "#898d3f";
		getElementById('prod7').style.color = "#898d3f";
		getElementById('prod8').style.color = "#898d3f";
		getElementById('prodotto1').style.visibility = "hidden";
		getElementById('prodotto2').style.visibility = "hidden";
		getElementById('prodotto3').style.visibility = "hidden";
		getElementById('prodotto4').style.visibility = "hidden";
		getElementById('prodotto5').style.visibility = "hidden";
		getElementById('prodotto6').style.visibility = "hidden";
		getElementById('prodotto7').style.visibility = "hidden";
		getElementById('prodotto8').style.visibility = "hidden";
		getElementById('zoom1').style.visibility = "hidden";
		getElementById('zoom2').style.visibility = "hidden";
		getElementById('zoom3').style.visibility = "hidden";
		getElementById('zoom4').style.visibility = "hidden";
		getElementById('zoom5').style.visibility = "hidden";
		getElementById('zoom6').style.visibility = "hidden";
		getElementById('zoom7').style.visibility = "hidden";
		getElementById('zoom8').style.visibility = "hidden";
	}
}
