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