

  var max      = 10;

  var nrImages = 6;

  function makeImages() {

    this[0]     = "http://www.buffetfestachopp.com.br/img/banners/banner1p.jpg";

    this[1]     = "http://www.buffetfestachopp.com.br/img/banners/banner2p.jpg";

    this[2]     = "http://www.buffetfestachopp.com.br/img/banners/banner3p.jpg";

    this[3]     = "http://www.buffetfestachopp.com.br/img/banners/banner4p.jpg";

    this[4]     = "http://www.buffetfestachopp.com.br/img/banners/banner5p.jpg";

    this[5]     = "http://www.buffetfestachopp.com.br/img/banners/banner6p.jpg";	


    this.length = nrImages;

  }

  function makeLinks() {

    this[0]     = "http://www.buffetfestachopp.com.br/banner1.php";

    this[1]     = "http://www.buffetfestachopp.com.br/banner2.php";

    this[2]     = "http://www.buffetfestachopp.com.br/banner3.php";

    this[3]     = "http://www.buffetfestachopp.com.br/banner4.php";

	this[4]     = "http://www.buffetfestachopp.com.br/banner5.php";

	this[5]     = "http://www.buffetfestachopp.com.br/banner6.php";

    this.length = nrImages;



  }

  var vetImages = new makeImages();

  var vetLinks  = new makeLinks();

  var escolhido = Math.round(Math.random()*max);

  var espaco    = max / nrImages;

  for(var cont = 1;cont*espaco <= max;cont++) {

    if (escolhido <= (cont*espaco)) {

      document.write("<a href="+vetLinks[cont-1]+" target=_self><img  src="+vetImages[cont-1]+" border=0></a>");

      break;

    }

  }

