imgPath = new Array;
if (document.images)
	{
	i0 = new Image;
	i0.src = '/images/stockage/01.JPG';
	imgPath[0] = i0.src;
	i1 = new Image;
	i1.src = '/images/stockage/02.JPG';
	imgPath[1] = i1.src;
	i2 = new Image;
	i2.src = '/images/stockage/03.JPG';
	imgPath[2] = i2.src;
	i3 = new Image;
	i3.src = '/images/stockage/04.JPG';
	imgPath[3] = i3.src;
	}
a = 0;
function ejs_img_fx(img)
	{
	if(img && img.filters && img.filters[0])
		{
		img.filters[0].apply();
		img.filters[0].play();
		}
	}

function StartAnim()
	{
	if (document.images)
		{
		document.write('<img src="/images/stockage/01.JPG" border="1" alt="" name="defil" align="right" hspace="10">');
		defilimg()
		}
	else
		{
		document.write('<img src="/images/stockage/01.JPG" border="1" alt="" align="right" hspace="10">')
		}
	}

function defilimg()
	{
	if (a == 3)
		{
		a = 0;
		}
	if (document.images)
		{
		ejs_img_fx(document.defil)
		document.defil.src = imgPath[a];
		tempo3 = setTimeout("defilimg()",3000);
		a++;
		}
	}