// JavaScript Document
 <!-- Copyright 2002 Bontrager Connection, LLC
//
// Type the number of images you are rotating.

NumberOfImagesToRotate7 = 6;

// Specify the first and last part of the image tag.

FirstPart7 = '<img src="images/main_pic';
LastPart7 = '.jpg" height="260" width="629" border="0">';

function printImage7() {
var r7 = Math.ceil(Math.random() * NumberOfImagesToRotate7);
document.write(FirstPart7 + r7 + LastPart7);
}
//-->
