var max      = 6;
  var nrImages = 6;
  function makeImages() {
    this[0]     = "http://i594.photobucket.com/albums/tt26/acheidownload/Filmes/2i3x3a.gif";
    this[1]     = "http://i594.photobucket.com/albums/tt26/acheidownload/Filmes/tvnopc.jpg";
    this[2]     = "http://i594.photobucket.com/albums/tt26/acheidownload/Filmes/264mbue.gif";
    this[3]     = "http://i594.photobucket.com/albums/tt26/acheidownload/Filmes/bannermininotebook728x90.gif";
    this[4]     = "http://i594.photobucket.com/albums/tt26/acheidownload/Filmes/728x90_ultra_jogos.gif";
    this[5]     = "http://i594.photobucket.com/albums/tt26/acheidownload/Filmes/728x90_ultramob_ringtones.jpg";

    this.length = nrImages;
  }
  function makeLinks() {
    this[0]     = "http://clicklog-af.shopping.uol.com.br/?urlRedir=http%3A//shopping.uol.com.br/smartphone-apple-iphone-8gb-3g-gsm-vivo_1896933.html%3Fpagetp%3D2%26cliquecompare%3D1&type=7&caf=3d6552f424f24c6c937a06f074d39a17|50220";
    this[1]     = "http://www.diretoriox.net/product_info.php?ref=1022&products_id=1&affiliate_banner_id=9";
    this[2]     = "http://clicklog-af.shopping.uol.com.br/?urlRedir=http%3A//shopping.uol.com.br/mp3-player-apple-ipod-nano-ma497zy-a-8gb_1332801.html%3Fpagetp%3D2%26cliquecompare%3D1&type=7&caf=3d6552f424f24c6c937a06f074d39a17|50220";
    this[3]     = "http://clicklog-af.shopping.uol.com.br/?urlRedir=http%3A//shopping.uol.com.br/notebook-itautec-infoway-w7650-c4q54-intel-pentium-dual-core-15-1-86ghz-1gb-160gb_1873733.html%3Fpagetp%3D4%26cliquecompare%3D1&type=7&caf=3d6552f424f24c6c937a06f074d39a17|50220";
    this[4]     = "http://afiliados.cliquemidia.com/pub.php?id=276_59";
    this[5]     = "http://afiliados.cliquemidia.com/pub.php?id=276_31";
    this.length = nrImages;

  }
  var vetImages = new makeImages();
  var vetLinks  = new makeLinks();
  var x = Math.round(Math.random()*max);
  var y    = max / nrImages;
  for(var cont = 1;cont*y <= max;cont++) {
    if (x <= (cont*y)) {
      document.write("<a href="+vetLinks[cont-1]+" target=_blank><img  src="+vetImages[cont-1]+" border=0></a>");
      break;
    }
  }
