<!-- Hide from old browsers 
<!-- Number below represents how many images are in your rotation. -->
var imagenumber = 5;
var randomnumber = Math.random() ;
var rand1 = Math.round( (imagenumber-1) * randomnumber) + 1 ;

<!-- This is where you specify the location and titles of the images in your rotation. -->
bigphotos = new Array
bigphotos[1] = "http://www.nd.edu/~sibc/images/rotation/photo1.jpg" 
bigphotos[2] = "http://www.nd.edu/~sibc/images/rotation/photo2.jpg" 
bigphotos[3] = "http://www.nd.edu/~sibc/images/rotation/photo3.jpg"
bigphotos[4] = "http://www.nd.edu/~sibc/images/rotation/photo4.jpg" 
bigphotos[5] = "http://www.nd.edu/~sibc/images/rotation/photo5.jpg"
var bigphoto = bigphotos[rand1]

<!-- This section will create an alt text tag for your photograph, where you can specify the verbage a text-based browser will display.-->
alttags = new Array
alttags[1] = "group photo of SIBC members" 
alttags[2] = "group photo of SIBC members" 
alttags[3] = "group photo of SIBC members" 
alttags[4] = "group photo of SIBC members" 
alttags[5] = "group photo of SIBC members" 
var alttag = alttags[rand1]

<!-- This section will pull the image from the IMG SRC that you specify.  DO NOT CHANGE THIS CODE!!! -->
document.write('<IMG SRC="' + bigphoto + '" border="0" width="216" height="207" alt="' + alttag + '">')
// -- End Hiding Here -->