/* author: il michele */
/* Creation date: 02/11/2006 */
var theImages = new Array() // giu le mani da questa riga
// per aggiungere immagini alla rotazione continuare con
// la sequenza qui sotto
theImages[0] = '../img/banner1.jpg'
theImages[1] = '../img/banner2.jpg'
theImages[2] = '../img/banner3.jpg'
theImages[3] = '../img/banner4.jpg'
theImages[4] = '../img/banner5.jpg'
theImages[5] = '../img/banner6.jpg'
theImages[6] = '../img/banner7.jpg'
theImages[7] = '../img/banner8.jpg'
theImages[8] = '../img/banner9.jpg'
theImages[9] = '../img/banner10.jpg'
theImages[10] = '../img/banner11.jpg'
var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}

