/*
dernière modif		:	06/10/2009 par XD
*/

a = 0;

function StartAnim()
{
	if (document.images)
	{
		document.write('<img src="images/galerie/brossee1.jpg" alt="" name="defil" />');
		defilimg();
	}
	else
	{
		document.write('<IMG SRC="images/galerie/brossee2.jpg" alt="" />'); // on met une image statique par défaut
	}
}

function defilimg()
{
	if (a == imgPath.length)	a = 0;
	if (document.images)
	{
		document.defil.src = imgPath[a];
		setTimeout("defilimg()",4000);
		a++;
	}
}

// on lance le défilement
StartAnim ();