<!-- Copyright 2002 Bontrager Connection, LLC
 //
 // Type the number of images you are rotating.

 NumberOfImagesToRotate = 25;

 // Specify the first and last part of the image tag. 

 FirstPart = '<img src="http://www.du.edu/duhealth/site/designs/shared/images/photos/rightCol/';
 LastPart = '.jpg" height="195" width="186" class="photo" />';

 function printImage() {
 var r = Math.ceil(Math.random() * NumberOfImagesToRotate);
 document.write(FirstPart + r + LastPart);
 }
 //-->