
function change(id)
{
	if (document.getElementById(id).style.display == "none")
		document.getElementById(id).style.display="block";
	else
		document.getElementById(id).style.display="none";
}


function zoom(p)
{
	if (p.className == "imageProduit")
		p.className = "imageZoom";
	else
		p.className = "imageProduit";
}


