






<!-- Begin
var interval = 5; // delay between rotating images (in seconds)
var random_display = 0; // 0 = no, 1 = yes
interval *= 1000;
var image_index = 0;
var alt_index = 0;
var url_index = 0;
image_list = new Array();
alt_list = new Array();
//remove  the unNeeded items // change to your file structure
//<a href="/home/552.htm">Banner6</a>
image_list[image_index++] = new fnImageItem("/home/bnr6.png");
alt_list[alt_index++] = "b-free.ca";
//<a href="/home/551.htm">Banner5</a>
image_list[image_index++] = new fnImageItem("/home/bnr5.png");
alt_list[alt_index++] = "b-free.ca";
//<a href="/home/550.htm">Banner4</a>
image_list[image_index++] = new fnImageItem("/home/bnr4.png");
alt_list[alt_index++] = "b-free.ca";
//<a href="/home/549.htm">Banner3</a>
image_list[image_index++] = new fnImageItem("/home/bnr3.png");
alt_list[alt_index++] = "b-free.ca";
//<a href="/home/548.htm">Banner2</a>
image_list[image_index++] = new fnImageItem("/home/bnr2.png");
alt_list[alt_index++] = "b-free.ca";
//<a href="/home/547.htm">Banner1</a>
image_list[image_index++] = new fnImageItem("/home/bnr1.png");
alt_list[alt_index++] = "b-free.ca";

var number_of_image = image_list.length;
function fnImageItem(image_location) {
    this.image_item = new Image();
    this.image_item.src = image_location;
}
function get_fnImageItemLocation(imageObj) {
    return(imageObj.image_item.src)
}
function generate(x, y) {
    var range = y - x + 1;
    return Math.floor(Math.random() * range) + x;
}
function fnGetNextImage() {
    if (random_display) {
    image_index = generate(0, number_of_image-1);
    }
    else {
    image_index = (image_index+1) % number_of_image;
    }
    var new_image = get_fnImageItemLocation(image_list[image_index]);
    return(new_image);
}
function fnRotateImage(place) {
    var new_image = fnGetNextImage();
    var oldA
    document[place].src = new_image;
    document[place].alt = alt_list[image_index];
    var recur_call = "fnRotateImage('"+place+"')";
    setTimeout(recur_call, interval);
}
//  End -->
 

