// frasi
var theImages1 = new Array() 

theImages1[0] = '<img src="images/happyleptic_frase1.gif" width="790" height="170">'
theImages1[1] = '<img src="images/happyleptic_frase2.gif" width="790" height="170">'
theImages1[2] = '<img src="images/happyleptic_frase3.gif" width="790" height="170">'
theImages1[3] = '<img src="images/happyleptic_frase4.gif" width="790" height="170">'
theImages1[4] = '<img src="images/happyleptic_frase5.gif" width="790" height="170">'



var j = 0
var p = theImages1.length;
var preBuffer1 = new Array()
for (i = 0; i < p; i++){
   preBuffer1[i] = new Image()
   preBuffer1[i].src = theImages1[i]
}
var whichImage1 = Math.round(Math.random()*(p-1));

function showbanner1(){
document.write(theImages1[whichImage1]);
}