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

image = new Array

image[1]="images/img-int-11.jpg"
image[2]="images/img-int-12.jpg"

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


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

-->