
var i = 0;
function boucle_images()
{
	var intervalle=3000 <!-- temps en millisecondes entre deux affichages 1000 <==> 1 secondes -->
	var img = new Array();
	<!-- placer ici les images que vous souhaitez faire afficher par cette boucle -->
	<!-- nous avons placer des liens sur ces images, a vous de voir si vous les laisser ou pas... -->
	img[0]='<a href="document_redac.htm"><img src="images/85doc.jpg" border=0 width=84 height=55 alt="Documentation technique"></a>';
	img[1]='<a href="management_projet.htm"><img src="images/85manag_proj.jpg" border=0 width=83 height=55 alt="Management de projet"></a>';
	img[2]='<a href="gestion_connaissances.htm"><img src="images/85_km.jpg" border=0 width=84 height=62 alt="Gestion des connaissances"></a>';
	img[3]='<a href="document_trad.htm"><img src="images/85_trad.jpg" border=0 width=84 height=62 alt="Traduction"></a>';
	img[4]='<a href="document_repro.htm"><img src="images/85repro.jpg" border=0 width=84 height=62 alt="Editique"></a>';
	img[5]='<a href="document_diffusion.htm"><img src="images/85archive.jpg" border=0 width=84 height=62 alt="Diffusion"></a>';
	img[6]='<a href="assistance.htm"><img src="images/85pao.jpg" border=0 width=84 height=62 alt="Assistance technique"></a>';
	img[7]='<a href="soutienl.htm"><img src="images/85falcdoc.jpg" border=0 width=84 height=62 alt="Soutien logistique"></a>';
	img[8]='<a href="maitrise_risques.htm"><img src="images/85_mr.jpg" border=0 width=84 height=62 alt="Maîtrise des risques"></a>';
	img[9]='<a href="document_open.htm"><img src="images/85_open.jpg" border=0 width=84 height=62 alt="Atelier éditorial OpenSuite"></a>';
	img[10]='<a href="document_production.htm"><img src="images/85docinter.jpg" border=0 width=84 height=62 alt="Développement de systèmes"></a>';
	img[11]='<a href="etudes_conception_mecanique.htm"><img src="images/85be.jpg" border=0 width=84 height=62 alt="Etudes de conception mécanique"></a>';

<!-- vous pouvez tout a fait rajouter (ou supprimer) des images, attention a la syntaxe ! -->
	var nombre_total_images = 12; <!-- nombre total d'images (12) -->
 
	ReturnDiv("boucle").innerHTML=img[i];
	i++;
	i%=nombre_total_images;
	setTimeout("boucle_images()",intervalle);
}

	<!-- dans la balise body: onLoad="boucle_images();"   ! -->

	<!-- à l'endroit de l'animation :  <div id="boucle"></div>   ! -->

   function ReturnDiv(ID) {
/*
      if (navigator.userAgent.indexOF("Netcape6") != -1 ) {
	 return(document.getElementById(ID)) ;
      } else 
*/

      if ( navigator.appVersion.indexOf("MSIE") != -1 ) {
        return( document.getElementById(ID) ) ;
      } else {
        return( eval("document."+ID) );
      }
   }