/*
Gestion de banni&egrave;re
SCRIPT EDITE SUR L'EDITEUR JAVASCRIPT
http://www.editeurjavascript.com
*/

ejs_banurl = new Array;
ejs_banimageUrl=new Array;
ejs_banimageUrl[0] = "images/LOGO-PELEMELE.jpg";
ejs_banurl[0] = "http://www.pelemele.toutmayotte.fr";

ejs_banimageUrl[1] = "images/lessaintsalbertpromo.jpg";
ejs_banurl[1] = "http://www.lessaintsalbert.fr";

ejs_banimageUrl[2] = "images/pubsacs.jpg";
ejs_banurl[2] = "http://www.pelemele.toutmayotte.fr";


/*
ejs_banimageUrl[4] = "images/MayHebdo.jpg";
ejs_banurl[4] = "http://www.mayottehebdo.com";
le 04/05/09
ejs_banimageUrl[2] = "images/976fivechat.jpg";
ejs_banurl[2] = "http://www.976-five.com";

ejs_banimageUrl[3] = "images/logosambo.jpg";
ejs_banurl[3] = "http://www.toutmayotte.fr/mayotte,annuaire,MicroUnivers-8-2.html";





*/

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 width= 507 height=110  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()",6500);
   }

AffichePub();
