var max      = 23;
  var nrImages = 23;
  function makeImages() 
{
    

this[0]     = "_imagens/meuoutdoor1.jpg";
this[1]     = "aguaecia/banner.jpg";
this[2]     = "ajudovender/banner.jpg";
this[3]     = "ananias/banner.jpg";
this[4]     = "anoral/banner.jpg";
this[5]     = "belobicho/banner.jpg";
this[6]     = "bramamateriais/banner.jpg";
this[7]     = "brireal/banner.jpg";
this[8]     = "damiaomoura/banner.jpg";
this[9]     = "eletricapolvilho/banner.jpg";
this[10]     = "hiran/banner.jpg";
this[11]     = "imoveisindustriais/banner.jpg";
this[12]     = "jbribeiro/banner.jpg";
this[13]     = "mourapneus/banner.jpg";
this[14]     = "olivarimoveis/banner.jpg";
this[15]     = "pnecap/banner.jpg";
this[16]     = "transoliani/banner.jpg";
this[17]     = "unibloc/banner.jpg";
this[18]     = "_imagens/meuoutdoor1.jpg";
this[19]     = "_imagens/meuoutdoor2.jpg";
this[20]     = "_imagens/meuoutdoor3.jpg";
this[21]     = "ademir-soares/banner.jpg";
this[22]     = "unifrutas/banner.jpg";


    this.length = nrImages;
  }
  function makeLinks()

 {
    

this[0]     = "anuncie.html";
this[1]     = "aguaecia/";
this[2]     = "ajudovender/";
this[3]     = "ananias/";
this[4]     = "anoral/";
this[5]     = "belobicho/";
this[6]     = "bramamateriais/";
this[7]     = "brireal/";
this[8]     = "damiaomoura/";
this[9]     = "eletricapolvilho/";
this[10]     = "hiran/";
this[11]     = "imoveisindustriais/";
this[12]     = "jbribeiro/";
this[13]     = "mourapneus/";
this[14]     = "olivarimoveis/";
this[15]     = "pnecap/";
this[16]     = "transoliani/";
this[17]     = "unibloc/";
this[18]     = "anuncie.html";
this[19]     = "anuncie.html";
this[20]     = "anuncie.html";
this[21]     = "ademir-soares/";
this[22]     = "unifrutas/";






  }
  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]+"><img  src="+vetImages[cont-1]+" border=0></a>");
      break;
    }
  }