var max      = 10;
  var nrImages = 3;
  function makeImages() {
    this[0]     = "http://i49.tinypic.com/mmdjq9.jpg";
    this[1]     = "http://i48.tinypic.com/tao6ds.jpg";
    this[2]     = "http://i46.tinypic.com/351cwsg.jpg";
    this.length = nrImages;
  }
  function makeLinks() {
    this[0]     = "http://wwws.br.warnerbros.com/invictus/";
    this[1]     = "http://www.playarte.com.br/";
    this[2]     = "http://www.sonypictures.com.br/Sony/HotSites/Br/nine/";
    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;
    }
  }