function defiler_photos(id_biblio,maxphotos)
{
	if( i < maxphotos)
	{
		
		document.getElementById('defiler_photo').src= "photos/" + id_biblio + "/mini_" + Tableauphotos[i];
		document.getElementById('defiler_lien').href= "photos/" + id_biblio + "/" + Tableauphotos[i];
		i++;
		setTimeout("defiler_photos("+ id_biblio + ","+ maxphotos +");",2000);
	}
	else
	{
		i=0;
		setTimeout("defiler_photos("+ id_biblio + ","+ maxphotos +");",1000);
	}
	
}