  var max      = 17;
  var nrImages = 17;
  function makeLinks() {
    this[0]   = "http://www.cultblog.com.br/";
	this[1]   = "http://www.agitomg.com.br/";
    this[2]   = "http://www.agitouberlandia.com.br/";	
    this[3]   = "http://tvanimal.com.br/";
	this[4]   = "http://www.udinight.com.br/";
	this[5]   = "http://www.oqa.com.br/";
	this[6]   = "http://www.zebillin.com.br/";
	this[7]   = "http://www.eunainternet.com/";
	this[8]   = "http://hugueneybisneto.blogspot.com/";
	this[9]   = "http://www.guiauberlandia.com.br/";
	this[10]   = "http://farolcomunitario.blogspot.com/";
	this[11]   = "http://www.perguntascretinas.com.br/";
	this[12]   = "http://megaminas.globo.com/";
	this[13]   = "http://www.imagemnativa.com.br/";
	this[14]   = "http://www.alemazzariolli.com/";
	this[15]   = "http://imagemcontemporanea2.blogspot.com/";
	this[16]   = "http://www.clickuberlandia.com.br/";
	this[17]   = "http://www.correiodeuberlandia.com.br/";
								
    this.length = nrImages;
  }
  
  function makeNames() {
    this[0]   = " target=_blank>  - CultBlog";
	this[1]   = " target=_blank>  - Agito MG";
	this[2]   = " target=_blank>  - Agito Uberlandia";
	this[3]   = " target=_blank>  - Tv Animal";
	this[4]   = " target=_blank>  - UdiNight";
    this[5]   = " target=_blank>  - OQA";
	this[6]   = " target=_blank>  - Zebillin";
	this[7]   = " target=_blank>  - Eu na Internet.COM";
	this[8]   = " target=_blank>  - Hugueney Bisneto";
	this[9]   = " target=_blank>  - Guia Uberlandia";
	this[10]   = " target=_blank>  - Farol Comunitario";
	this[11]   = " target=_blank>  - Perguntas Cretinas";
	this[12]   = " target=_blank>  - Mega Minas";
	this[13]   = " target=_blank>  - Imagem Nativa";
	this[14]   = " target=_blank>  - Ale Mazzariolli";
	this[15]   = " target=_blank>  - Imagem Contemporanea";
	this[16]   = " target=_blank>  - Click Uberlandia";
	this[17]   = " target=_blank>  - Correio de Uberlandia";
	
    this.length = nrImages;
  }

  var vetNames  = new makeNames();
  var vetLinks  = new makeLinks();
  for(var cont = 0;cont <= 3;cont++) {
    var x = Math.round(Math.random()*(max));
    document.write("<a href="+vetLinks[x]+vetNames[x]+"</a>");
    document.write("<br>");
  }