
  var max      = 10;
  var nrImages = 10;
  function makeImages() {
    this[0]     = "banner3/1c.jpg";
    this[1]     = "banner3/2c.jpg";
    this[2]     = "banner3/3c.jpg";
    this[3]     = "banner3/4c.jpg";
    this[4]     = "banner3/5c.jpg";
    this[5]     = "banner3/6c.jpg";
	this[6]     = "banner3/7c.jpg";
	this[7]     = "banner3/8c.jpg";
	this[8]     = "banner3/9c.jpg";
	this[9]     = "banner3/10c.jpg";
	this.length = nrImages;
  }
  function makeLinks() {
    this[0]     = "http://www.rodolfoclix.com.br/tiposdebook.html";
    this[1]     = "http://www.rodolfoclix.com.br/tiposdebook.html";
    this[2]     = "http://www.rodolfoclix.com.br/tiposdebook.html";
    this[3]     = "http://www.rodolfoclix.com.br/tiposdebook.html";
    this[4]     = "http://www.rodolfoclix.com.br/tiposdebook.html";
    this[5]     = "http://www.rodolfoclix.com.br/tiposdebook.html";
	this[6]     = "http://www.rodolfoclix.com.br/tiposdebook.html";
	this[7]     = "http://www.rodolfoclix.com.br/tiposdebook.html";
	this[8]     = "http://www.rodolfoclix.com.br/tiposdebook.html";
	this[9]     = "http://www.rodolfoclix.com.br/tiposdebook.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;
    }
  }

