var ImagesTwo = new Array()

//Random-loading images
ImagesTwo[0] = 'images/2.png' // replace with names of images
ImagesTwo[1] = 'images/5.png' // replace with names of images
ImagesTwo[2] = 'images/8.png' // replace with names of images
ImagesTwo[3] = 'images/11.png' // replace with names of images

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

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

function showImage2(){
if(whichImage==0){
document.write('<a href="index.php?act=simplifyyourlife" title="Simplify Your Life"><img src="'+ImagesTwo[whichImage]+'" border=0 width=285 height=180 alt="Simplify Your Life"></a>');
}

else if(whichImage==1){
document.write('<a href="index.php?act=referfriend" title="Refer a Friend & Earn $10"><img src="'+ImagesTwo[whichImage]+'" border=0 width=285 height=180 alt="Refer a Friend & Earn $10"></a>');
}

else if(whichImage==2){
document.write('<a href="index.php?act=workcomp" title="Is Work Comp a Pain?"><img src="'+ImagesTwo[whichImage]+'" border=0 width=285 height=180 alt="Is Work Comp a Pain?"></a>');
}

else if(whichImage==3){
document.write('<a href="index.php?act=communicate" title="How do you like to Communicate?"><img src="'+ImagesTwo[whichImage]+'" border=0 width=285 height=180 alt="How do you like to Communicate?"></a>');
}


}