<!--
// Create arrays to contain all the values 
// for image locations

image = new Array

image[1]="images/home/01.jpg"
image[2]="images/home/02.jpg"
image[3]="images/home/03.jpg"
image[4]="images/home/04.jpg"
image[5]="images/home/05.jpg"
image[6]="images/home/06.jpg"
image[7]="images/home/07.jpg"
image[8]="images/home/08.jpg"
image[9]="images/home/09.jpg"

// Create a random number between 1 and five
random_num = (Math.round((Math.random()*8)+1))


// Write the image tag with a random array element
document.write("<img src=\"" + image[random_num] + "\">");

-->