<!--
// Create arrays to contain all the values
// for links and image locations
link = new Array
image = new Array

link[1]="about_spotlight.html"
image[1]="images/rotation/index_cancer.jpg"

link[2]="about_spotlight.html"
image[2]="images/rotation/index_cloverdale.jpg"

link[3]="about_spotlight.html"
image[3]="images/rotation/index_ivy.jpg"

link[4]="about_spotlight.html"
image[4]="images/rotation/index_knoy.jpg"

link[5]="about_spotlight.html"
image[5]="images/rotation/index_youth.jpg"


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


// Write a link and images with random array
document.write("<a href=\"" + link[random_num] + "\">");
document.write("<img src=\"" + image[random_num] + "\" border=\"0\"></a>");

-->