<!--

/*
How to add an additional image.


-Copy this line below:
pic_interior[0] = '<img src="/images/interior_image.jpg" width="175" height="140" border="0" alt="Students on Concordia Campus" />';

-Paste this line before the END OF THE LINE text

-Increment the number that is located in the "pic_interior[1]" text by 1 of the previous number.

-Change the image name, width, height, and alt tags to match the new image you will be using.

-Save and Upload.

*/



var pic_interior = new Array();

pic_interior[0] = '<img src="/assets/images/interior_image.jpg" width="175" height="140" border="0" alt="Students on Concordia Campus" />';
pic_interior[1] = '<img src="/assets/images/wide_image.jpg" width="175" height="140" border="0" alt="Professor and Student on Concordia Campus" />';
//END OF THE LINE


//This line picks an image at random from the list you entered above
var randNumValue = (Math.round(Math.random()*(pic_interior.length-1)));
var interior_image=pic_interior[randNumValue]

//This line applies the image to your rotating_image
document.write(interior_image);

-->