ejs_banurl3 = new Array;
ejs_banimageUrl3=new Array;

ejs_banimageUrl3[0] = "images/photo-g3d.jpg";
ejs_banurl3[0] = "";

ejs_banimageUrl3[1] = "images/photo-g3e.jpg";
ejs_banurl3[1] = "";


affiche3 = false;

function affiche3Pub3()
   {
   
   if(!affiche3)
      {
      numimage3= Math.round(Math.random()*(ejs_banurl3.length-1));
      document.write ('<IMG SRC="' + ejs_banimageUrl3[numimage3] + '" BORDER=0 NAME=ejs_banpub3>')
      affiche3 = true;
      }
   else
      {
      if(numimage3 == (ejs_banurl3.length-1))
         numimage3 = 0;
      else
         numimage3++;
      document.ejs_banpub3.src=ejs_banimageUrl3[numimage3];
      }
	  	
   setTimeout("affiche3Pub3()",12000);
   }

affiche3Pub3();

