// JavaScript Document
var max = 10;
var nrImages = 5;
function makeImages() {
this[0] = "arquivos/home_anuncio_1.png";
this[1] = "arquivos/home_anuncio_2.png";
this[2] = "arquivos/home_anuncio_3.png";
this[3] = "arquivos/home_anuncio_4.png";
this[4] = "arquivos/home_anuncio_5.png";
this.length = nrImages;
}
function makeLinks() {
this[0] = "http://www.tecmania.com.br/contato.asp";
this[1] = "http://www.tecmania.com.br/contato.asp";
this[2] = "http://www.tecmania.com.br/contato.asp";
this[3] = "http://www.tecmania.com.br/contato.asp";
this[4] = "http://www.tecmania.com.br/contato.asp";
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;
}
}