
<!--
// Create arrays to contain all the values 
// for image locations

image = new Array

image[1]="../vox_images/left_vox_bottom1.jpg"
image[2]="../vox_images/left_vox_bottom2.jpg"
image[3]="../vox_images/left_vox_bottom3.jpg"
image[4]="../vox_images/left_vox_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] + "\">");

-->



