  var max      = 10;

  var nrImages = 3;

  function makeImages() {

    this[0]     = "http://www.agitomontesclaros.com.br/imagens/topo/top10.jpg";

    this[1]     = "http://www.agitomontesclaros.com.br/imagens/topo/top10.jpg";

    this[2]     = "http://www.agitomontesclaros.com.br/imagens/topo/top10.jpg";

    this[3]     = "http://www.agitomontesclaros.com.br/imagens/topo/top10.jpg";

    this[4]     = "http://www.agitomontesclaros.com.br/imagens/topo/top10.jpg";

    this[5]     = "http://www.agitomontesclaros.com.br/imagens/topo/top10.jpg";

    this.length = nrImages;

  }

  function makeLinks() {

    this[0]     = "agenda.php";

    this[1]     = "coberturas.php";

    this[2]     = "contatos.php";

    this[3]     = "agenda.php";

    this[4]     = "coberturas.php";

    this[5]     = "www.ofertasmoc.com.br";

    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;

    }

  }
