var theImages = new Array()

//Random-loading images
theImages[0] = '/_images-promos/hot_tips-01.jpg'
theImages[1] = '/_images-promos/hot_tips-02.jpg' 
theImages[2] = '/_images-promos/hot_tips-03.jpg' 
theImages[3] = '/_images-promos/hot_tips-04.jpg' 
theImages[4] = '/_images-promos/hot_tips-05.jpg' 
theImages[5] = '/_images-promos/hot_tips-06.jpg' 
theImages[6] = '/_images-promos/hot_tips-07.jpg' 
theImages[7] = '/_images-promos/hot_tips-08.jpg' 
theImages[8] = '/_images-promos/hot_tips-09.jpg' 
theImages[8] = '/_images-promos/buzz-1.gif' 
theImages[9] = '/_images-promos/buzz-2.gif' 
theImages[10] = '/_images-promos/buzz-3.gif' 
theImages[11] = '/_images-promos/buzz-4.gif' 
theImages[12] = '/_images-promos/buzz-5.gif' 
theImages[13] = '/_images-promos/buzz-6.gif' 
theImages[14] = '/_images-promos/buzz-7.gif' 
theImages[15] = '/_images-promos/buzz-8.gif' 
theImages[16] = '/_images-promos/buzz-9.gif' 
theImages[17] = '/_images-promos/buzz-10.gif' 
theImages[18] = '/_images-promos/buzz-11.gif' 
theImages[19] = '/_images-promos/buzz-12.gif' 

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(){
if(whichImage==0){
document.write('<img src="'+theImages[whichImage]+'" class="promoHot">');
}
else if(whichImage==1){
document.write('<img src="'+theImages[whichImage]+'" class="promoHot">');
}
else if(whichImage==2){
document.write('<img src="'+theImages[whichImage]+'" class="promoHot">');
}
else if(whichImage==3){
document.write('<img src="'+theImages[whichImage]+'" class="promoHot">');
}
else if(whichImage==4){
document.write('<img src="'+theImages[whichImage]+'" class="promoHot">');
}
else if(whichImage==5){
document.write('<img src="'+theImages[whichImage]+'" class="promoHot">');
}
else if(whichImage==6){
document.write('<img src="'+theImages[whichImage]+'" class="promoHot">');
}
else if(whichImage==7){
document.write('<img src="'+theImages[whichImage]+'" class="promoHot">');
}
else if(whichImage==8){
document.write('<img src="'+theImages[whichImage]+'" class="promoHot">');
}
else if(whichImage==9){
document.write('<img src="'+theImages[whichImage]+'" class="promoHot">');
}
else if(whichImage==10){
document.write('<img src="'+theImages[whichImage]+'" class="promoHot">');
}
else if(whichImage==11){
document.write('<img src="'+theImages[whichImage]+'" class="promoHot">');
}
else if(whichImage==12){
document.write('<img src="'+theImages[whichImage]+'" class="promoHot">');
}
else if(whichImage==13){
document.write('<img src="'+theImages[whichImage]+'" class="promoHot">');
}
else if(whichImage==14){
document.write('<img src="'+theImages[whichImage]+'" class="promoHot">');
}
else if(whichImage==15){
document.write('<img src="'+theImages[whichImage]+'" class="promoHot">');
}
else if(whichImage==16){
document.write('<img src="'+theImages[whichImage]+'" class="promoHot">');
}
else if(whichImage==17){
document.write('<img src="'+theImages[whichImage]+'" class="promoHot">');
}
else if(whichImage==18){
document.write('<img src="'+theImages[whichImage]+'" class="promoHot">');
}
else if(whichImage==19){
document.write('<img src="'+theImages[whichImage]+'" class="promoHot">');
}
}

