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

link[1]="fund_civic_heritage_preserve.html"
image[1]="images/rotation/rotation_heritage.jpg"

link[2]="grant_recent_awards.html"
image[2]="images/rotation/rotation_cloverdale.jpg"

link[3]="fund_animal_humane_soc_pc.html"
image[3]="images/rotation/rotation_humane.jpg"

link[4]="fund_edu_knoy_resource_ctr.html"
image[4]="images/rotation/rotation_knoy.jpg"

link[5]="grant_recent_awards.html"
image[5]="images/rotation/rotation_rebuilding.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>");

-->
