ejs_banurl4 = new Array;
ejs_banimageUrl4=new Array;

ejs_banimageUrl4[0] = "images/photo-g1d.jpg";
ejs_banurl4[0] = "";

ejs_banimageUrl4[1] = "images/photo-g1e.jpg";
ejs_banurl4[1] = "";


affiche4 = false;

function affiche4Pub4()
   {
   
   if(!affiche4)
      {
      numimage4= Math.round(Math.random()*(ejs_banurl4.length-1));
      document.write ('<IMG SRC="' + ejs_banimageUrl4[numimage4] + '" BORDER=0 NAME=ejs_banpub4>')
      affiche4 = true;
      }
   else
      {
      if(numimage4 == (ejs_banurl4.length-1))
         numimage4 = 0;
      else
         numimage4++;
      document.ejs_banpub4.src=ejs_banimageUrl4[numimage4];
      }
	  	
   setTimeout("affiche4Pub4()",9000);
   }

affiche4Pub4();

