var theImages = new Array()

//Random-loading images
theImages[0] = 'images/email.png' // replace with names of images
theImages[1] = 'images/email.png' // replace with names of images
theImages[2] = 'images/email.png' // replace with names of images
theImages[3] = 'images/email.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=email" title="Share Your Email Address"><img src="'+theImages[whichImage]+'" border=0 width=285 height=180 alt="Share Your Email Address"></a>');
}
else if(whichImage==1){
document.write('<a href="index.php?act=email" title="Share Your Email Address"><img src="'+theImages[whichImage]+'" border=0 width=285 height=180 alt="Share Your Email Address"></a>');
}
else if(whichImage==2){
document.write('<a href="index.php?act=email" title="Share Your Email Address"><img src="'+theImages[whichImage]+'" border=0 width=285 height=180 alt="Share Your Email Address"></a>');
}
else if(whichImage==3){
document.write('<a href="index.php?act=email" title="Share Your Email Address"><img src="'+theImages[whichImage]+'" border=0 width=285 height=180 alt="Share Your Email Address"></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>');
}

}*/