<!-- 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. -->
images = new Array
images[1] = "http://communityrelations.nd.edu/images/rotation/1.jpg" 
images[2] = "http://communityrelations.nd.edu/images/rotation/2.jpg" 
images[3] = "http://communityrelations.nd.edu/images/rotation/3.jpg"
images[4] = "http://communityrelations.nd.edu/images/rotation/4.jpg"
images[5] = "http://communityrelations.nd.edu/images/rotation/5.jpg" 
var image = images[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] = "Slideshow image from the Office of Community Relations" 
alttags[2] = "Slideshow image from the Office of Community Relations" 
alttags[3] = "Slideshow image from the Office of Community Relations" 
alttags[4] = "Slideshow image from the Office of Community Relations" 
alttags[5] = "Slideshow image from the Office of Community Relations" 
var alttag = alttags[rand1]

<!-- This section will pull the image from the IMG SRC that you specify.-->
document.write('<img src="' + image + '" alt="' + alttag + '" width="355" height="200" />')
// -- End Hiding Here -->


