
<!--
// Create arrays to contain all images

image = new Array

image[1]="images/11.jpg"
image[2]="images/12.jpg"
image[3]="images/13.jpg"
image[4]="images/14.jpg"
image[5]="images/15.jpg"
image[6]="images/16.jpg"
image[7]="images/17.jpg"


// Create a random number between 1 and 7
random_num = (Math.round((Math.random()*6)+1))


// Write the image tag with a random array element
document.write("<img src=\"" + image[random_num] + "\"width=200 height=110 ALIGN=right alt='Kennesaw State Health Clinic'>");


-->