var max = 10;
var nrImages = 10;
function makeImages() {
this[0] = "http://www.gatasdeuberlandia.xpg.com.br/destaque/_ariane_destaque.jpg";
this[1] = "http://www.gatasdeuberlandia.xpg.com.br/destaque/_juhtelesco_destaque.jpg";
this[2] = "http://www.gatasdeuberlandia.xpg.com.br/destaque/_barbie_destaque.jpg";
this[3] = "http://www.gatasdeuberlandia.xpg.com.br/destaque/_talita-linda_destaque.jpg";
this[4] = "http://www.gatasdeuberlandia.xpg.com.br/destaque/_danivalence_destaque.jpg";
this[5] = "http://www.gatasdeuberlandia.xpg.com.br/destaque/_lauren_destaque.jpg";
this[6] = "http://www.gatasdeuberlandia.xpg.com.br/destaque/_rafaela-senador_destaque.jpg";
this[7] = "http://www.gatasdeuberlandia.xpg.com.br/destaque/_jehnifer_destaque.jpg";
this[8] = "http://www.gatasdeuberlandia.xpg.com.br/destaque/_mariana-vila_destaque.jpg";
this[9] = "http://www.gatasdeuberlandia.xpg.com.br/destaque/_kellen-cristina_destaque.jpg";
this[10] = "http://www.gatasdeuberlandia.xpg.com.br/destaque/_luaninha-lacerda_destaque.jpg";
this.length = nrImages;
}
function makeLinks() {
this[0] = "http://mulheresdeuberlandia.blogspot.com/2008/11/ariane-crozara.html";
this[1] = "http://mulheresdeuberlandia.blogspot.com/2008/06/jh-teslenco.html";
this[2] = "http://mulheresdeuberlandia.blogspot.com/2008/04/barbie-s2-topmodel.html";
this[3] = "http://mulheresdeuberlandia.blogspot.com/2008/06/talita-linda.html";
this[4] = "http://mulheresdeuberlandia.blogspot.com/2008/07/dani-valence.html";
this[5] = "http://mulheresdeuberlandia.blogspot.com/2008/12/lauren-lopezz.html";
this[6] = "http://mulheresdeuberlandia.blogspot.com/search.php?q=rafaela+senador";
this[7] = "http://mulheresdeuberlandia.blogspot.com/2008/10/jhenifer.html";
this[8] = "http://mulheresdeuberlandia.blogspot.com/2008/10/mariana-vilaa.html";
this[9] = "http://mulheresdeuberlandia.blogspot.com/2008/09/kelle-cristina.html";
this[10] = "http://mulheresdeuberlandia.blogspot.com/2008/09/luaniinha-laceerda.html";
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 = 3;cont*y<= max;cont++) {
if (x <= (cont*y)) {
document.write("<a href="+vetLinks[cont-1]+" target=__self><img src="+vetImages[cont-1]+" border=0></a>");
break;
}
}