//store the quotations in arrays
//To add another quote, 

//Step 1: increment size of the array by the number of photos you wish to add
//ex: if you want to add 3 photos and the photos array is: Array(8). Add 3 more to the array and it becomes Array(11)

//Step 2: copy the last line in the current photo definition from photos[x] = ".... to ;
//Step 3: paste the new line at the end and increment the number of the photo by 1 and repeat from step 2 unti you're done adding your photos
//ex: photos[5] = "insert photo here"; is copied and pasted on the next line and becomes photos[6] = "insert photos here"; then type in your new photo over "insert photo here". Just make sure you leave the quotation marks around the photo itself.

//define the size of the array (i.e. how many photo bars do you have?)
photos = new Array(12);

//define each quote in the array, note the numbering begins at 0
photos[0] = "/images/photobar1.jpg";
photos[1] = "/images/photobar2.jpg";
photos[2] = "/images/photobar3.jpg";
photos[3] = "/images/photobar4.jpg";
photos[4] = "/images/photobar5.jpg";
photos[5] = "/images/photobar6.jpg";
photos[6] = "/images/photobar7.jpg";
photos[7] = "/images/photobar8.jpg";
photos[8] = "/images/photobar9.jpg";
photos[9] = "/images/photobar10.jpg";
photos[10] = "/images/photobar11.jpg";
photos[11] = "/images/photobar12.jpg";


//-------------=====DO NOT CHANGE ANYTHING BELOW HERE=====-------------//

//calculate a random index
index = Math.floor(Math.random() * photos.length);

//display the photo bar
document.write("<img src=\"" + photos[index] + "\" alt=\"Prediction\" border=\"0\" width=\"501\" height=\"84\">");
//done