
var i = 0;
function boucle_images()
{
	var intervalle=3000 <!-- temps en millisecondes entre deux affichages 1000 <==> 1 secondes -->
	var img = new Array();
	img[0]='<a href="writing_drawing.htm"><img src="../images/85doc.jpg" border=0 width=84 height=55 alt="Writing and Drawing"></a>';
	img[1]='<a href="project_management.htm"><img src="../images/85manag_proj.jpg" border=0 width=83 height=55 alt="Project Management"></a>';
	img[2]='<a href="knowledge_management.htm"><img src="../images/85_km.jpg" border=0 width=84 height=62 alt="Knowledge Management"></a>';
	img[3]='<a href="translation.htm"><img src="../images/85_trad.jpg" border=0 width=84 height=62 alt="Translation"></a>';
	img[4]='<a href="printing_publishing.htm"><img src="../images/85repro.jpg" border=0 width=84 height=62 alt="Printing and Publishing"></a>';
	img[5]='<a href="distribution.htm"><img src="../images/85archive.jpg" border=0 width=84 height=62 alt="Distribution"></a>';
	img[6]='<a href="rams_logistics-engineering.htm"><img src="../images/85falcdoc.jpg" border=0 width=84 height=62 alt="RAMS and Logistics engineering"></a>';
	img[7]='<a href="risk_analysis.htm"><img src="../images/85_mr.jpg" border=0 width=84 height=62 alt="Technological risk analysis"></a>';	
	img[8]='<a href="en_opensuite.htm"><img src="../images/85_open.jpg" border=0 width=84 height=62 alt="OpenSuite Software"></a>';
	img[9]='<a href="document_production_viewing_systems.htm"><img src="../images/85docinter.jpg" border=0 width=84 height=62 alt="Document production and viewing systems"></a>';
	img[10]='<a href="design_engineering.htm"><img src="../images/85be.jpg" border=0 alt="Design engineering"></a>';
	var nombre_total_images = 11; 
 
	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) );
      }
   }