
  var max      = 10;
  var nrImages = 6;
  function makeImages() {
    this[0]     = "images/BearsEmpire468x60.gif";
    this[1]     = "images/OSOSGIFUMG.gif";
    this[2]     = "images/Ursosdorio.gif";
    this[3]     = "images/ursosparana.gif";
    this[4]     = "images/ososbue.gif";
    this[5]     = "images/banner_julio.gif";
	this[6]     = "images/banner ososBudapest 451.swf";
	this[7]     = "images/BearsEmpire468x60.gif";
    this.length = nrImages;
  }
  function makeLinks() {
    this[0]     = "http://www.bearsempire.com/";
    this[1]     = "http://www.ososcontraelsida.com/";
    this[2]     = "http://www.ursosdorio.com/";
    this[3]     = "http://www.ursosdoparana.com/";
    this[4]     = "http://www.ososbue.com/";
    this[5]     = "http://www.ursosmg.com/eventos.htm";
	this[6]     = "http://www.budapestbears.hu/";
	this[7]     = "http://www.bearsempire.com/";
    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;
    }
  }
