  var max      = 8;
  var nrImages = 8;
  function makeLinks() {
	this[0]     = "http://idoser.blogspot.com/";
    this[1]     = "http://baixarfilmeemusica.net/";
    this[2]     = "http://mulheresdeuberaba.blogspot.com/";			
    this[3]     = "http://saberebomdemais.com/";
	this[4]     = "http://certim.net/";
	this[5]     = "http://telasexy.net/";
	this[6]     = "http://baixarmusicasmp3gratis.net/";
	this[7]     = "http://baixarfilmesgratis.net/";
	this[8]     = "http://kabal-movies.blogspot.com/";
								
    this.length = nrImages;
  }
  
  function makeNames() {
    this[0]     = " target=_blank>  - Idoser";
    this[1]     = " target=_blank>  - Baixar Filme e Musica";
	this[2]     = " target=_blank>  - Mulheres de Uberaba";
	this[3]     = " target=_blank>  - Saber e Bom Demais";
	this[4]     = " target=_blank>  - Certim";
	this[5]     = " target=_blank>  - Tela Sexy";
	this[6]     = " target=_blank>  - Baixar Musicas Mp3";
	this[7]     = " target=_blank>  - Baixar Filmes Gratis";
	this[8]     = " target=_blank>  - Kabal-Movies";
	
    this.length = nrImages;
  }

  var vetNames  = new makeNames();
  var vetLinks  = new makeLinks();
  for(var cont = 0;cont <= 5;cont++) {
    var x = Math.round(Math.random()*(max));
    document.write("<a href="+vetLinks[x]+vetNames[x]+"</a>");
    document.write("<br>");
  }