<!-- Begin
var interval = 5.5; // delay between rotating images (in seconds)
var random_display = 0; // 0 = no, 1 = yes
interval *= 1000;

var image_index = 0;
image_list = new Array();
image_list[image_index++] = new imageItem("/images/photo_gallery/clubhouse/0524.jpg");
image_list[image_index++] = new imageItem("/images/photo_gallery/clubhouse/0572.jpg");
image_list[image_index++] = new imageItem("/images/photo_gallery/clubhouse/0277.jpg");
image_list[image_index++] = new imageItem("/images/photo_gallery/clubhouse/0590.jpg");
image_list[image_index++] = new imageItem("/images/photo_gallery/clubhouse/0537.jpg");
image_list[image_index++] = new imageItem("/images/photo_gallery/clubhouse/0540.jpg");
image_list[image_index++] = new imageItem("/images/photo_gallery/clubhouse/0575.jpg");
image_list[image_index++] = new imageItem("/images/photo_gallery/clubhouse/0006.jpg");
image_list[image_index++] = new imageItem("/images/photo_gallery/clubhouse/0010.jpg");
image_list[image_index++] = new imageItem("/images/photo_gallery/clubhouse/0017.jpg");
image_list[image_index++] = new imageItem("/images/photo_gallery/clubhouse/0020.jpg");
image_list[image_index++] = new imageItem("/images/photo_gallery/clubhouse/0025.jpg");
image_list[image_index++] = new imageItem("/images/photo_gallery/clubhouse/0035.jpg");
image_list[image_index++] = new imageItem("/images/photo_gallery/clubhouse/0036.jpg");
image_list[image_index++] = new imageItem("/images/photo_gallery/clubhouse/0038.jpg");
image_list[image_index++] = new imageItem("/images/photo_gallery/clubhouse/0045.jpg");
image_list[image_index++] = new imageItem("/images/photo_gallery/clubhouse/0047.jpg");
image_list[image_index++] = new imageItem("/images/photo_gallery/clubhouse/0050.jpg");
image_list[image_index++] = new imageItem("/images/photo_gallery/clubhouse/0054.jpg");
image_list[image_index++] = new imageItem("/images/photo_gallery/clubhouse/0284.jpg");
image_list[image_index++] = new imageItem("/images/photo_gallery/clubhouse/0533.jpg");
var number_of_image = image_list.length;
function imageItem(image_location) {
this.image_item = new Image();
this.image_item.src = image_location;
}
function get_ImageItemLocation(imageObj) {
return(imageObj.image_item.src)
}
function generate(x, y) {
var range = y - x + 1;
return Math.floor(Math.random() * range) + x;
}
function getNextImage() {
if (random_display) {
image_index = generate(0, number_of_image-1);
}
else {
image_index = (image_index+1) % number_of_image;
}
var new_image = get_ImageItemLocation(image_list[image_index]);
return(new_image);
}
function rotateImage(place) {
var new_image = getNextImage();
document[place].src = new_image;
var recur_call = "rotateImage('"+place+"')";
setTimeout(recur_call, interval);
}
//  End -->