// Script to display a random banner image

//<!-- Copyright 2002 Bontrager Connection, LLC
// Number of images to rotate

NumberOfImagesToRotate = 10;

// Specify the first and last part of the image tag.
// Make sure all images have the same dimensions.

FirstPart = '<img src="images/image';
LastPart = '.jpg" height="160" width="760">';

function displayImage() {
  var r = Math.ceil(Math.random() * NumberOfImagesToRotate);
  document.write(FirstPart + r + LastPart);
}
//-->