
var link_path  = "/";

// Function that return a number between 0 and "nums - 1"
function getRandom(nums)
{
    var ranNum= Math.round(Math.random()*nums);
    return ranNum;
}

// Tells us how many images we have available.
var numberOfImages = 9; //based on array numbers, so total images -1
var randomNumber = getRandom(numberOfImages);

// Create an array to hold the names of all images.
var image = new Array(numberOfImages);
image[0]= link_path+"images/wrapper/main-banner-f-01.jpg";
image[1]= link_path+"images/wrapper/main-banner-f-02.jpg";
image[2]= link_path+"images/wrapper/main-banner-f-03.jpg";
image[3]= link_path+"images/wrapper/main-banner-f-04.jpg";
//image[4]= link_path+"images/wrapper/main-banner-f-05.jpg";
image[4]= link_path+"images/wrapper/main-banner-f-06.jpg";
image[5]= link_path+"images/wrapper/main-banner-f-07.jpg";
image[6]= link_path+"images/wrapper/main-banner-f-08.jpg";
image[7]= link_path+"images/wrapper/main-banner-f-09.jpg";
image[8]= link_path+"images/wrapper/main-banner-f-10.jpg";
image[9]= link_path+"images/wrapper/main-banner-f-11.jpg";

