// 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\/images\/citrusthrift1009.pdf';
imgs[imgcnt++] = 'images\/citrusthrift1009.jpg';
// Image 2
imglinks[imgcnt] = 'http:\/\/www.citrusbgc.com\/jointheclub.htm';
imgs[imgcnt++] = 'images\/TV2.jpg';
// Image 3
// imglinks[imgcnt] = 'http:\/\/www.citrusbgc.com\/images\/2010tasteofinv.png';
// imgs[imgcnt++] = 'images\/2010tasteofinv2.png';


function rotate() {
if (document.images) {
thisimg++;
if (thisimg >= imgcnt) thisimg = 0;
document.rollimg.src = imgs[thisimg];
setTimeout("rotate();",5000);
}
}
setTimeout("rotate();",5000); 