<!-- Debut du script
	myPix = new Array("http://www.anteos.fr/images/bandeausup0.jpg","http://www.anteos.fr/images/bandeausup1.jpg","http://www.anteos.fr/images/bandeausup2.jpg","http://www.anteos.fr/images/bandeausup3.jpg","http://www.anteos.fr/images/bandeausup4.jpg","http://www.anteos.fr/images/bandeausup5.jpg","http://www.anteos.fr/images/bandeausup6.jpg","http://www.anteos.fr/images/bandeausup7.jpg")
	speed = 5000;
	i = 0;
	function autoSlideShow(imgname) {
	  if (document.images)
	  {
	    document.getElementById(imgname).src = myPix[i];
	    i++;
	    if (i > myPix.length-1) i = 0;
	    b=imgname;
	    setTimeout('autoSlideShow(b)',speed);
	  }
	}
// Fin du script -->
