// 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\/images\/TennisTourn.pdf';
imgs[imgcnt++] = 'images\/tennis.jpg';
// Image 3
imglinks[imgcnt] = 'http:\/\/www.citrusbgc.com\/images\//steaknsteak.pdf';
imgs[imgcnt++] = 'images\//stylesgwhite.jpg';
// Image 4
imglinks[imgcnt] = 'http:\/\/www.citrusbgc.com\/images\//steaknsteak.pdf';
imgs[imgcnt++] = 'images\//steak2010.jpg';


function rotate() {
if (document.images) {
thisimg++;
if (thisimg >= imgcnt) thisimg = 0;
document.rollimg.src = imgs[thisimg];
setTimeout("rotate();",5000);
}
}
setTimeout("rotate();",5000); 