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[3] = 'images/2.jpg' // replace with names of images
ImagesThree[4] = 'images/5.jpg' // replace with names of images
ImagesThree[5] = 'images/7.jpg' // replace with names of images

ImagesThree[6] = 'images/1.jpg' // replace with names of images
ImagesThree[7] = 'images/8.jpg' // replace with names of images
ImagesThree[8] = 'images/10.jpg' // replace with names of images
ImagesThree[9] = 'images/11.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=kcmnews" title="Latest KCM News"><img src="'+ImagesThree[whichImage]+'" border=0 width=285 height=180 alt="Latest KCM News"></a>');
}
else if(whichImage==3){
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==4){
document.write('<a href="index.php?act=referfriend" title="Refer a Friend & Earn $10"><img src="'+ImagesThree[whichImage]+'" border=0 width=285 height=180 alt="Refer a Friend & Earn $10"></a>');
}
else if(whichImage==5){
document.write('<a href="index.php?act=howarewedoing" title="Tell us how we\'re doing!"><img src="'+ImagesThree[whichImage]+'" border=0 width=285 height=180 alt="Tell us how we\'re doing!"></a>');
}

else if(whichImage==6){
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>');
}
else if(whichImage==7){
document.write('<a href="index.php?act=workcomp" title="Is Work Comp a Pain?"><img src="'+ImagesThree[whichImage]+'" border=0 width=285 height=180 alt="Is Work Comp a Pain?"></a>');
}
else if(whichImage==8){
document.write('<a href="index.php?act=collegeinternship" title="Looking for a College Internship?"><img src="'+ImagesThree[whichImage]+'" border=0 width=285 height=180 alt="Looking for a College Internship?"></a>');
}
else if(whichImage==9){
document.write('<a href="index.php?act=communicate" title="How do you like to Communicate?"><img src="'+ImagesThree[whichImage]+'" border=0 width=285 height=180 alt="How do you like to Communicate?"></a>');
}


}