<!--
//This code is ... interesting ... 
//Change this as you add and remove pictures, (remember to account for 
//image[0], so image[0] to image[4] inclusive would be 5)
var numImages = 5;

// Create arrays to contain all the values 
// for image locations
image = new Array;

//preferably all the images should be in an images folder, add to the 
//array the images you wish to have, and don't forget to change the 
// var numImages as well
//RENAME THESE, JUSTIN.  ALSO THESE ARE CASE SENSITIVE THANKS TO PHP
image[0]="images/website_thumbs/01_Opht.jpg";
image[1]="images/website_thumbs/02_Educ_Change.jpg";
image[2]="images/website_thumbs/03_Joy_James.jpg";
image[3]="images/website_thumbs/04_Chiasmi.jpg";
image[4]="images/website_thumbs/05_Emergency_Med.jpg";

//Create an array to contain specific html pages of the project that correspond to the image array
pages= new Array;

//preferably all the pages will be in a separate in_progress folder
pages[0]="http://bms.brown.edu/surgery/ophthalmology/";
pages[1]="http://brown.edu/Research/Coachella/";
pages[2]="http://www.brown.edu/Departments/African_American_Studies/JJames/";
pages[3]="http://www.brown.edu/Research/Chiasmi/conf_program.html";
pages[4]="http://www.brown.edu/Facilities/CIS/sta/dev/emergency_medicine/index.html";

// get three, different random numbers
random_num1 = (Math.round((Math.random()*(numImages -1))));
random_num2 = (Math.round((Math.random()*(numImages -1))));
while (random_num1 == random_num2)
{
random_num2 = (Math.round((Math.random()*(numImages -1))));
}

random_num3 = (Math.round((Math.random()*(numImages -1))));
while ((random_num1 == random_num3) || (random_num2 == random_num3))
{
random_num3 = (Math.round((Math.random()*(numImages -1))));
}
