
<!--
// Create arrays to contain all the values 
// for image locations

image = new Array

image[1]="../../eng/samson_images/left_samson_bottom1.jpg"
image[2]="../../eng/samson_images/left_samson_bottom2.jpg"
image[3]="../../eng/samson_images/left_samson_bottom3.jpg"
image[4]="../../eng/samson_images/left_samson_bottom4.jpg"


// Create a random number between 1 and five
random_num = (Math.round((Math.random()*3)+1))


// Write the image tag with a random array element
document.write("<img src=\"" + image[random_num] + "\">");

-->




