// JavaScript Document
 <!-- Copyright 2002 Bontrager Connection, LLC
//
// Type the number of images you are rotating.

NumberOfImagesToRotate5 = 4;

// Specify the first and last part of the image tag.

FirstPart5 = '<img src="images/prod/erozio';
LastPart5 = '.jpg" height="72" width="105" border="0">';

function printImage5() {
var r5 = Math.ceil(Math.random() * NumberOfImagesToRotate5);
document.write(FirstPart5 + r5 + LastPart5);
}
//-->
