<!-- Copyright 2002 Bontrager Connection, LLC
//
// Type the number of images you are rotating.

NumberOfImagesToRotate = 28;

// Specify the first and last part of the image tag.

FirstPart = '<img src="/assets/css/img/image';
LastPart = '.png" alt="" class="c-image">';

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