ejs_banurl = new Array;
ejs_banimageUrl=new Array;

ejs_banimageUrl[0] = "http://www.bastide-du-medoc.fr/img/1.jpg";
ejs_banurl[0] = "http://www.bastide-du-medoc.fr/livre.php";

ejs_banimageUrl[1] = "http://www.bastide-du-medoc.fr/img/2.jpg";
ejs_banurl[1] = "http://www.bastide-du-medoc.fr/livre.php";

ejs_banimageUrl[2] = "http://www.bastide-du-medoc.fr/img/3.jpg";
ejs_banurl[2] = "http://www.bastide-du-medoc.fr/livre.php";

ejs_banimageUrl[3] = "http://www.bastide-du-medoc.fr/img/4.jpg";
ejs_banurl[3] = "http://www.bastide-du-medoc.fr/livre.php";

ejs_banimageUrl[4] = "http://www.bastide-du-medoc.fr/img/5.jpg";
ejs_banurl[4] = "http://www.bastide-du-medoc.fr/livre.php";

ejs_banimageUrl[5] = "http://www.bastide-du-medoc.fr/img/6.jpg";
ejs_banurl[5] = "http://www.bastide-du-medoc.fr/livre.php";

ejs_banimageUrl[6] = "http://www.bastide-du-medoc.fr/img/7.jpg";
ejs_banurl[6] = "http://www.bastide-du-medoc.fr/livre.php";

ejs_banimageUrl[7] = "http://www.bastide-du-medoc.fr/img/8.jpg";
ejs_banurl[7] = "http://www.bastide-du-medoc.fr/livre.php";

ejs_banimageUrl[8] = "http://www.bastide-du-medoc.fr/img/9.jpg";
ejs_banurl[8] = "http://www.bastide-du-medoc.fr/livre.php";

ejs_banimageUrl[9] = "http://www.bastide-du-medoc.fr/img/10.jpg";
ejs_banurl[9] = "http://www.bastide-du-medoc.fr/livre.php";







affiche = false;

function AffichePub()
   {
   if(!affiche)
      {
      numimage= Math.round(Math.random()*(ejs_banurl.length-1));
      document.write ('<a href="#" onClick="window.open(ejs_banurl[numimage],\'_blank\')"><IMG SRC="' + ejs_banimageUrl[numimage] + '" BORDER=0 NAME=ejs_banpub></a>')
      affiche = true;
      }
   else
      {
      if(numimage == (ejs_banurl.length-1))
         numimage = 0;
      else
         numimage++;
      document.ejs_banpub.src=ejs_banimageUrl[numimage];
      }
   setTimeout("AffichePub()",9000);
   }

AffichePub();
