var ad2 = 11; //Numero di banner
var rnd2 = 0; //Numero del banner che sarà mostrato

//Indirizzi associati ai banner
url2 = new Array();
url2[1]="http://www.xcustoms.it/partners.htm";
url2[2]="http://www.xcustoms.it/partners.htm";
url2[3]="http://www.xcustoms.it/partners.htm";
url2[4]="http://www.xcustoms.it/partners.htm";
url2[5]="http://www.xcustoms.it/partners.htm";
url2[6]="http://www.xcustoms.it/partners.htm";
url2[7]="http://www.xcustoms.it/partners.htm";
url2[8]="http://www.xcustoms.it/partners.htm";
url2[9]="http://www.xcustoms.it/partners.htm";
url2[10]="http://www.xcustoms.it/partners.htm";
url2[11]="http://www.xcustoms.it/partners.htm";

//Indirizzi (relativi) delle immagini dei banner
img2 = new Array();
img2[1]="http://www.xcustoms.it/images_layout/periodiche/a_hamann_01.jpg";
img2[2]="http://www.xcustoms.it/images_layout/periodiche/a_hofele_01.jpg";
img2[3]="http://www.xcustoms.it/images_layout/periodiche/a_lb_01.jpg";
img2[4]="http://www.xcustoms.it/images_layout/periodiche/a_lb_02.jpg";
img2[5]="http://www.xcustoms.it/images_layout/periodiche/a_lb_03.jpg";
img2[6]="http://www.xcustoms.it/images_layout/periodiche/a_premier_01.jpg";
img2[7]="http://www.xcustoms.it/images_layout/periodiche/a_techart_01.jpg";
img2[8]="http://www.xcustoms.it/images_layout/periodiche/a_wald_01.jpg";
img2[9]="http://www.xcustoms.it/images_layout/periodiche/a_zenetti_01.jpg";
img2[10]="http://www.xcustoms.it/images_layout/periodiche/a_zenetti_02.jpg";
img2[11]="http://www.xcustoms.it/images_layout/periodiche/a_zenetti_03.jpg";

//Messaggi che appaiono sui vari banner
tool2 = new Array();
tool2[1]="Partners";
tool2[2]="Partners";
tool2[3]="Partners";
tool2[4]="Partners";
tool2[5]="Partners";
tool2[6]="Partners";
tool2[7]="Partners";
tool2[8]="Partners";
tool2[9]="Partners";
tool2[10]="Partners";
tool2[11]="Partners";

//Messaggi che appaiono sulla status bar
stat2=new Array();
stat2[1]="Partners";
stat2[2]="Partners";
stat2[3]="Partners";
stat2[4]="Partners";
stat2[5]="Partners";
stat2[6]="Partners";
stat2[7]="Partners";
stat2[8]="Partners";
stat2[9]="Partners";
stat2[10]="Partners";
stat2[11]="Partners";

function rndm2(){
rnd2 = Math.floor(Math.random() * ad2) + 1;
setad2();
};

function setad2(){
window.document.ad2.src = img2[rnd2];
window.document.ad2.alt = tool2[rnd2];
};

function adclick2(){
window.open(url2[rnd2], "", "");
};