var ImagesThree = new Array()

//Random-loading images
ImagesThree[0] = 'images/3.jpg' // replace with names of images
ImagesThree[1] = 'images/6.jpg' // replace with names of images
//ImagesThree[2] = 'images/9.jpg' // replace with names of images
ImagesThree[2] = 'images/1.jpg' // replace with names of images


var j = 0
var p = ImagesThree.length;
var preBuffer = new Array()

for (i = 0; i < p; i++){
preBuffer[i] = new Image()
preBuffer[i].src = ImagesThree[i]
}
var whichImage = Math.round(Math.random()*(p-1));

function showImage3(){
if(whichImage==0){
document.write('<a href="index.php?act=joinpremierclub" title="Join the Premier Club"><img src="'+ImagesThree[whichImage]+'" border=0 width=285 height=180 alt="Join the Premier Club"></a>');
}
else if(whichImage==1){
document.write('<a href="index.php?act=umbrellas" title="Umbrellas Save Houses!"><img src="'+ImagesThree[whichImage]+'" border=0 width=285 height=180 alt="Umbrellas Save Houses!"></a>');
}
/*else if(whichImage==2){
document.write('<a href="index.php?act=simplifyyourlife" title="Simplify Your Life"><img src="'+ImagesThree[whichImage]+'" border=0 width=285 height=180 alt="Simplify Your Life"></a>');
}*/


else if(whichImage==2){
document.write('<a href="index.php?act=identitytheft" title="Join the Premier Club"><img src="'+ImagesThree[whichImage]+'" border=0 width=285 height=180 alt="Join the Premier Club"></a>');
}

}