/*
Gestion de banniere
*/

banurl_2      = new Array;
banimageUrl_2 = new Array;
banAlt_2      = new Array;

banimageUrl_2[0]  = "images/pub/pub2/bann_smatrix.jpg";
banurl_2[0]       = "http://www.nextgen-industry.com/puce-matrix-glitcher-xbox-360-p-510.html";
banAlt_2[0]       = "Nextgen-Industry - Matrix Glitcher - X360";

banimageUrl_2[1]  = "images/pub/pub2/bann_dsl.jpg";
banurl_2[1]       = "http://www.nextgen-industry.com/reparations-nintendo-ds-lite-c-25_58_63.html";
banAlt_2[1]       = "Nextgen-Industry - Réparation Nintendo DS Lite - Nintendo DS Lite";

banimageUrl_2[2]  = "images/pub/pub2/bann_matrix.jpg";
banurl_2[2]       = "http://www.nextgen-industry.com/matrix-nand-flasher-programmeur-p-548.html";
banAlt_2[2]       = "Nextgen-Industry - Matrix Nand Flasher - Xbox360";
affiche_2 = false;

function AffichePub_2()
   {
   if(!affiche_2)
      {
      numimage_2= Math.round(Math.random()*(banurl_2.length-1));
      document.write ('<img onClick="window.open(banurl_2[numimage_2],\'_self\')" style="cursor:hand;pointer:hand;" src="' + banimageUrl_2[numimage_2] + '" border="0" name="banpub_2" alt="' + banAlt_2[numimage_2] + '" title="' + banAlt_2[numimage_2] + '">')
      affiche_2 = true;
      }
   else
      {
      if(numimage_2 == (banurl_2.length-1))
         numimage_2 = 0;
      else
         numimage_2++;
      document.banpub_2.src=banimageUrl_2[numimage_2];
      }
   setTimeout("AffichePub_2()",5000);
   }

AffichePub_2();
