var theImages = new Array()

//Random-loading images
theImages[0] = 'images/1.png' // replace with names of images
theImages[1] = 'images/7.png' // replace with names of images
theImages[2] = 'images/10.png' // replace with names of images
theImages[3] = 'images/8.png' // replace with names of images


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 showImage1(){
if(whichImage==0){
document.write('<a href="index.php?act=identitytheft" title="Join the Premier Club"><img src="'+theImages[whichImage]+'" border=0 width=285 height=180 alt="Join the Premier Club"></a>');
}
else if(whichImage==1){
document.write('<a href="index.php?act=howarewedoing" title="Tell us how we\'re doing!"><img src="'+theImages[whichImage]+'" border=0 width=285 height=180 alt="Tell us how we\'re doing!"></a>');
}
else if(whichImage==2){
document.write('<a href="index.php?act=collegeinternship" title="Looking for a College Internship?"><img src="'+theImages[whichImage]+'" border=0 width=285 height=180 alt="Looking for a College Internship?"></a>');
}
else if(whichImage==3){
document.write('<a href="index.php?act=communicate" title="How do you like to Communicate?"><img src="'+theImages[whichImage]+'" border=0 width=285 height=180 alt="How do you like to Communicate?"></a>');
}


}
/*function showImage2(){
if(whichImage==3){
document.write('<a href="index.php?act=kcmanniversary" title="Celebrate With Us!"><img src="'+theImages[whichImage]+'" border=0 width=285 height=180 alt="Celebrate With Us!"></a>');
}
else if(whichImage==4){
document.write('<a href="index.php?act=joinpremierclub" title="Join the Premier Club"><img src="'+theImages[whichImage]+'" border=0 width=285 height=180 alt="Join the Premier Club"></a>');
}
else if(whichImage==5){
document.write('<a href="index.php?act=umbrellas" title="Umbrellas Save Houses!"><img src="'+theImages[whichImage]+'" border=0 width=285 height=180 alt="Umbrellas Save Houses!"></a>');
}

}
function showImage3(){
if(whichImage==6){
document.write('<a href="index.php?act=kcmanniversary" title="Celebrate With Us!"><img src="'+theImages[whichImage]+'" border=0 width=285 height=180 alt="Celebrate With Us!"></a>');
}
else if(whichImage==7){
document.write('<a href="index.php?act=joinpremierclub" title="Join the Premier Club"><img src="'+theImages[whichImage]+'" border=0 width=285 height=180 alt="Join the Premier Club"></a>');
}
else if(whichImage==8){
document.write('<a href="index.php?act=umbrellas" title="Umbrellas Save Houses!"><img src="'+theImages[whichImage]+'" border=0 width=285 height=180 alt="Umbrellas Save Houses!"></a>');
}

}*/