ejs_banurl = new Array;
ejs_banimageUrl=new Array;



ejs_banimageUrl[0] = "gestion/home/image1_fr.jpg";
ejs_banurl[0] = "";

ejs_banimageUrl[1] = "gestion/home/image2_fr.jpg";
ejs_banurl[1] = "";

ejs_banimageUrl[2] = "gestion/home/image3_fr.jpg";
ejs_banurl[2] = "";

ejs_banimageUrl[3] = "gestion/home/image4_fr.jpg";
ejs_banurl[3] = "";

ejs_banimageUrl[4] = "gestion/home/image5_fr.jpg";
ejs_banurl[4] = "";

ejs_banimageUrl[5] = "gestion/home/image6_fr.jpg";
ejs_banurl[5] = "";

ejs_banimageUrl[6] = "gestion/home/image7_fr.jpg";
ejs_banurl[6] = "";

ejs_banimageUrl[7] = "gestion/home/image8_fr.jpg";
ejs_banurl[7] = "";

ejs_banimageUrl[8] = "gestion/home/image9_fr.jpg";
ejs_banurl[8] = "";
/*
ejs_banimageUrl[9] = "gestion/home/image10_fr.jpg";
ejs_banurl[9] = "";
*/
affiche = false;
numimage=0;
function AffichePub()
   {
   	
   if(!affiche)
      {
      //numimage= Math.round(Math.random()*(ejs_banurl.length-1));
      
      document.write ('<IMG SRC="' + ejs_banimageUrl[numimage] + '" BORDER=0 NAME=ejs_banpub>')
      affiche = true;
      }
   else
      {
      if(numimage == (ejs_banurl.length-1))
         numimage = 0;
      else
         numimage++;
      document.ejs_banpub.src=ejs_banimageUrl[numimage];
      }
   setTimeout("AffichePub()",2500);
   }

AffichePub();


