  var max      = 10;
  var nrImages = 6;
  function makeImages() {
    this[0]     = "http://www.sortimentos.com/beleza/banner-01.gif";
    this[1]     = "http://www.sortimentos.com/beleza/banner-02.gif";
    this[2]     = "http://www.sortimentos.com/beleza/banner-03.gif";
    this[3]     = "http://www.sortimentos.com/beleza/banner-04.gif";
    this[4]     = "http://www.sortimentos.com/beleza/banner-05.gif";
    this[5]     = "http://www.sortimentos.com/beleza/banner-06.gif";
    this.length = nrImages;
  }
  function makeLinks() {
    this[0]     = "http://www.sortimentos.com/roupas/spfw-colecao-verao-2010-line-up-desfiles.htm";
    this[1]     = "http://www.sortimentos.com/roupas/fashion-rio-colecao-verao-2010.htm";
    this[2]     = "http://www.sortimentos.com/calcados/sicc-colecao-verao-2010.htm";
    this[3]     = "http://www.sortimentos.com/rs/donna-fashion-iguatemi-colecao-inverno-2009.htm";
    this[4]     = "http://www.sortimentos.com/rs/caxias-do-sul-iguatemi-serra-fashion-colecao-inverno-2009.htm";
    this[5]     = "http://www.sortimentos.com/roupas/fenim-0000.htm";
    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;
    }
  }