
<!--
// Create arrays to contain all the values 
// for image locations

image = new Array

image[1]="../korg_images/left_korg_bottom1.jpg"
image[2]="../korg_images/left_korg_bottom2.jpg"
image[3]="../korg_images/left_korg_bottom3.jpg"
image[4]="../korg_images/left_korg_bottom4.jpg"
image[5]="../korg_images/left_korg_bottom5.jpg"

// Create a random number between 1 and five
random_num = (Math.round((Math.random()*4)+1))


// Write the image tag with a random array element
document.write("<img src=\"" + image[random_num] + "\">");

-->



