var max = 10;
var nrImages = 10;
function makeImages() {
this[0] = "proflash/banner_0.swf";
this[1] = "proflash/banner_1.swf";
this[2] = "proflash/banner_2.swf";
this[3] = "proflash/banner_3.swf";
this[4] = "proflash/banner_4.swf";
this[5] = "proflash/banner_5.swf";
this[6] = "proflash/banner_6.swf";
this[7] = "proflash/banner_7.swf";
this[8] = "proflash/banner_8.swf";
this[9] = "proflash/banner_9.swf";
this.length = nrImages;
}
function makeLinks() {
this[0] = "http://www.rofamosturismo.com.br";
this[1] = "http://www.rofamosturismo.com.br";
this[2] = "http://www.rofamosturismo.com.br";
this[4] = "http://www.rofamosturismo.com.br";
this[5] = "http://www.rofamosturismo.com.br";
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("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\"147\" height=\"199\"> <param name=\"movie\" value="+vetImages[cont-1]+">     <param name=\"quality\" value=\"high\">   <embed src="+vetImages[cont-1]+" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"147\" height=\"199\"></embed></object>");
break;
}
}
