<!-- Copyright 2002 Bontrager Connection, LLC
//
// Type the number of images you are rotating.

NumberOfImagesToRotate = 7;

// Specify the first and last part of the image tag. 

FirstPart = '<img src="../img/header-';
LastPart = '-top.jpg" Border="0" style="vertical-align: bottom;">';
LastPart2 = '-bottom.jpg" Border="0" style="vertical-align: bottom;">';
var r = Math.ceil(Math.random() * NumberOfImagesToRotate);

function printImage() {
document.write(FirstPart + r + LastPart);
}

function printImage2() {
document.write(FirstPart + r + LastPart2);
}
