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

