﻿<!-- Original:  Robert Bui (astrogate@hotmail.com) -->
<!-- Web Site:  http://astrogate.virtualave.net -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var interval = 2.5; // delay between rotating images (in seconds)
var random_display = 1; // 0 = no, 1 = yes
interval *= 1000;

var image_indexSolutions = 0;
image_listSolutions = new Array();
image_listSolutions[image_indexSolutions++] = new imageItemSolutions("../images/slides/solutions/solutions_0.jpg");
image_listSolutions[image_indexSolutions++] = new imageItemSolutions("../images/slides/solutions/solutions_1.jpg");
image_listSolutions[image_indexSolutions++] = new imageItemSolutions("../images/slides/solutions/solutions_2.jpg");
image_listSolutions[image_indexSolutions++] = new imageItemSolutions("../images/slides/solutions/solutions_3.jpg");
image_listSolutions[image_indexSolutions++] = new imageItemSolutions("../images/slides/solutions/solutions_4.jpg");
image_listSolutions[image_indexSolutions++] = new imageItemSolutions("../images/slides/solutions/solutions_5.jpg");





var number_of_image = image_listSolutions.length;

function imageItemSolutions(image_location) {
this.image_item = new Image();
this.image_item.src = image_location;
}

function get_ImageItemLocationSolutions(imageObj) {
return(imageObj.image_item.src)
}

function generateSolutions(x, y) {
var range = y - x + 1;
return Math.floor(Math.random() * range) + x;
}

function getNextImageSolutions() {
if (random_display) {
image_indexSolutions = generateSolutions(0, number_of_image-1);
}
else {
image_indexSolutions = (image_index+1) % number_of_image;
}
var new_image = get_ImageItemLocationSolutions(image_listSolutions[image_indexSolutions]);
return(new_image);
}

function rotateImageSolutions(place) {
var new_image = getNextImageSolutions();
document[place].src = new_image;
var recur_call = "rotateImageSolutions('"+place+"')";
setTimeout(recur_call, interval);
}
//  End -->