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

