


function g(id){return document.getElementById(id);}

function montrerPhoto(id)
{
	for (var p=1; p<5; ++p)
		g("photo"+p).style.display = "none";
	g("photo"+id).style.display = "block";
}

