// Type the number of images you are rotating.

NumberOfImagesToRotate = 13;

var index = 0 ;
// Specify the first and last part of the image tag.


FirstPart = '<img src="templates/<?php echo $cur_template; ?>/images/postcards/BIApostcard_';
LastPart = '.gif" width="491" height="417" name="rImage"/>';

function printImage() {
var r = 0;
r = Math.ceil(Math.random() * NumberOfImagesToRotate);
document.write(FirstPart + r + LastPart);
index = r;
}



var interval = 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("http://www.breakfast-in-america.com/main/templates/bia/images/postcards/BIApostcard_1.gif");
image_list[image_index++] = new imageItem("http://www.breakfast-in-america.com/main/templates/bia/images/postcards/BIApostcard_2.gif");
image_list[image_index++] = new imageItem("http://www.breakfast-in-america.com/main/templates/bia/images/postcards/BIApostcard_3.gif");
image_list[image_index++] = new imageItem("http://www.breakfast-in-america.com/main/templates/bia/images/postcards/BIApostcard_4.gif");
image_list[image_index++] = new imageItem("http://www.breakfast-in-america.com/main/templates/bia/images/postcards/BIApostcard_5.gif");
image_list[image_index++] = new imageItem("http://www.breakfast-in-america.com/main/templates/bia/images/postcards/BIApostcard_6.gif");
image_list[image_index++] = new imageItem("http://www.breakfast-in-america.com/main/templates/bia/images/postcards/BIApostcard_7.gif");
image_list[image_index++] = new imageItem("http://www.breakfast-in-america.com/main/templates/bia/images/postcards/BIApostcard_8.gif");
image_list[image_index++] = new imageItem("http://www.breakfast-in-america.com/main/templates/bia/images/postcards/BIApostcard_9.gif");
image_list[image_index++] = new imageItem("http://www.breakfast-in-america.com/main/templates/bia/images/postcards/BIApostcard_10.gif");
image_list[image_index++] = new imageItem("http://www.breakfast-in-america.com/main/templates/bia/images/postcards/BIApostcard_11.gif");
image_list[image_index++] = new imageItem("http://www.breakfast-in-america.com/main/templates/bia/images/postcards/BIApostcard_12.gif");
image_list[image_index++] = new imageItem("http://www.breakfast-in-america.com/main/templates/bia/images/postcards/BIApostcard_13.gif");

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 (index==12) {
index = 0;
}

else {
index = index+1;
}

var new_image = get_ImageItemLocation(image_list[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);
}





