// This script is setup to show 3 images with links.
// More can be added to the array by just copying the lines.
var imgs = new Array(); var imglinks = new Array();
var imgcnt = 0; var thisimg = 0;
// Image 1
//imglinks[imgcnt] = 'http:\/\/www.citrusbgc.com\/kickball.htm';
//imgs[imgcnt++] = 'images\/kickball.png';
// Image 2
imglinks[imgcnt] = 'http:\/\/www.citrusbgc.com\/jointheclub.htm';
imgs[imgcnt++] = 'images\/join.png';
// Image 3
// imglinks[imgcnt] = 'http:\/\/www.citrusbgc.com\/rummagesale.htm';
// imgs[imgcnt++] = 'images\/rummagesale.png';


function rotate() {
if (document.images) {
thisimg++;
if (thisimg >= imgcnt) thisimg = 0;
document.rollimg.src = imgs[thisimg];
setTimeout("rotate();",5000);
}
}
setTimeout("rotate();",5000); 
