/*
SCRIPT EDITE SUR L'EDITEUR JAVASCRIPT
http://www.editeurjavascript.com
*/
imgPath = new Array;
SiClickGoTo = new Array;
version = navigator.appVersion.substring(0,1);
if (version >= 3)
	{
	i0 = new Image;
	i0.src = 'images/pict1.jpg';
	SiClickGoTo[0] = "";
	imgPath[0] = i0.src;
	i1 = new Image;
	i1.src = 'images/pict2.jpg';
	SiClickGoTo[1] = "";
	imgPath[1] = i1.src;
	}
a = 0;
function StartAnim()
	{
	if (version >= 3)
		{
		document.write('<IMG SRC="images/pict1.jpg" BORDER=0  NAME=defil>');
		defilimg()
		}
	else
		{
		document.write('<IMG SRC="images/pict1.jpg" BORDER=0>')
		}
	}
function ImgDest()
	{
	document.location.href = SiClickGoTo[a-1];
	}
function defilimg()
	{
	if (a == 2)
		{
		a = 0;
		}
	if (version >= 3)
		{
		document.defil.src = imgPath[a];
		tempo3 = setTimeout("defilimg()",5000);
		a++;
		}
	}