 <!-- Copyright 2002 Bontrager Connection, LLC
 //
 // Type the number of images you are rotating.

 NumberOfImagesToRotate = 6;

 // Specify the first and last part of the image tag. 

FirstPart3 = '<img src="/static/images/rightPhotos/rotating/summer-program/';
LastPart3 = '.jpg" height="305" width="213" />';

function printImageSummerProgram() {
var r = Math.ceil(Math.random() * NumberOfImagesToRotate);
document.write(FirstPart3 + r + LastPart3);
}
 //-->
