
  var max      = 10;
  var nrImages = 10;
  function makeImages() {
    this[0]     = "banner1/1a.jpg";
    this[1]     = "banner1/2a.jpg";
    this[2]     = "banner1/3a.jpg";
    this[3]     = "banner1/4a.jpg";
    this[4]     = "banner1/5a.jpg";
    this[5]     = "banner1/6a.jpg";
	this[6]     = "banner1/7a.jpg";
	this[7]     = "banner1/8a.jpg";
	this[8]     = "banner1/9a.jpg";
	this[9]     = "banner1/10a.jpg";
	this.length = nrImages;
  }
  function makeLinks() {
    this[0]     = "http://www.rodolfoclix.com.br/fotografiastock.html";
    this[1]     = "http://www.rodolfoclix.com.br/fotografiastock.html";
    this[2]     = "http://www.rodolfoclix.com.br/fotografiastock.html";
    this[3]     = "http://www.rodolfoclix.com.br/fotografiastock.html";
    this[4]     = "http://www.rodolfoclix.com.br/fotografiastock.html";
    this[5]     = "http://www.rodolfoclix.com.br/fotografiastock.html";
	this[6]     = "http://www.rodolfoclix.com.br/fotografiastock.html";
	this[7]     = "http://www.rodolfoclix.com.br/fotografiastock.html";
	this[8]     = "http://www.rodolfoclix.com.br/fotografiastock.html";
	this[9]     = "http://www.rodolfoclix.com.br/fotografiastock.html";
    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=_self><img  src="+vetImages[cont-1]+" border=0></a>");
      break;
    }
  }

