/*
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] = "http://exposemag.ca/pubs/Southparc_Leaderboard.jpg";
ejs_banurl[0] = "http://www.south-parc.com/";

ejs_banimageUrl[1] = "http://exposemag.ca/pubs/supra_girl_banner.jpg";
ejs_banurl[1] = "http://www.girlskateboards.com/";

ejs_banimageUrl[2] = "http://exposemag.ca/pubs/qccamp728.gif";
ejs_banurl[2] = "http://www.qcskateboardcamp.com";

ejs_banimageUrl[3] = "http://exposemag.ca/pubs/NEWANNONCE.gif";
ejs_banurl[3] = "http://www.bigbillsb.com/";

ejs_banimageUrl[4] = "http://exposemag.ca/pubs/SKATE_728.jpg";
ejs_banurl[4] = "http://www.skullskates.com";

ejs_banimageUrl[5] = "http://exposemag.ca/pubs/lakai_728x90.jpg";
ejs_banurl[5] = "http://www.lakai.com/";

ejs_banimageUrl[6] = "http://exposemag.ca/pubs/ripper_728x90.gif";
ejs_banurl[6] = "http://ripperskateboards.com/";

ejs_banimageUrl[7] = "http://exposemag.ca/pubs/ulc_72890.gif";
ejs_banurl[7] = "http://ulcskateboards.com/";

ejs_banimageUrl[8] = "http://exposemag.ca/pubs/LOTLanimgif.gif";
ejs_banurl[8] = "www.lordofthelines.ca";

ejs_banimageUrl[9] = "http://exposemag.ca/pubs/S3_VansContest_Leaderboard_ExposeMag_bkupGIF_fr.gif";
ejs_banurl[9] = "http://s3brdshp.com/fr/";

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()",10000);
   }

AffichePub();
