var max = 10;
var nrImages = 6;
function makeImages() {
this[0] = "http://baixakimusicas.net/Ultramob_BR_Free%20Ringtone%20Blue%20_468x60.jpg";
this[1] = "http://baixecomrapidez.net/img/Zero9_BR_Ringtones_468x60.gif";
this[2] = "http://baixecomrapidez.net/img/Zero9_BR_Game_468x60.jpg";
this[3] = "http://baixecomrapidez.net/img/Zero9_BR_Ringtone2_468x60.jpg";
this[4] = "http://baixakimusicas.net/Ultramob_BR_Free%20Ringtone%20Blue%20_468x60.jpg";
this[5] = "http://baixecomrapidez.net/img/Zero9_BR_Game_468x60.jpg";
this.length = nrImages;
}
function makeLinks() {
this[0] = "http://ads.glispa.com/sw/13101/CD3452/";
this[1] = "http://ads.glispa.com/sw/14899/CD3452/";
this[2] = "http://ads.glispa.com/sw/14901/CD3452/";
this[3] = "http://ads.glispa.com/sw/14900/CD3452/";
this[4] = "http://ads.glispa.com/sw/13101/CD3452/";
this[5] = "http://ads.glispa.com/sw/14901/CD3452/";
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;
}
}
