<!-- 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://www.nd.edu/~underc/west/images/rotation/big_pic_mountaingrass.jpg" 
images[2] = "http://www.nd.edu/~underc/west/images/rotation/big_pic_buffalo.jpg" 
images[3] = "http://www.nd.edu/~underc/west/images/rotation/big_pic_territory.jpg"
images[4] = "http://www.nd.edu/~underc/west/images/rotation/big_pic_mountains.jpg"
images[5] = "http://www.nd.edu/~underc/west/images/rotation/big_pic_grazingdeer.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] = "Image of mountains and grassland" 
alttags[2] = "Image of bison" 
alttags[3] = "Image of surrounding territory" 
alttags[4] = "Image of snow-capped mountains"
alttags[5] = "Image of grazing deer"
var alttag = alttags[rand1]

<!-- This section will pull the image from the IMG SRC that you specify.-->
document.write('<a href="http://www.nd.edu/~underc/west/multimedia/" title="Go To UNDERC West Multimedia Gallery"><IMG SRC="' + image + '" border="0" width="740" height="203" alt="' + alttag + '"></a>')
// -- End Hiding Here -->


