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

NumberOfImagesToRotate = 4;

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

FirstPart = '<a href="http://www.bastimmers.nl"><img src="http://www.bastimmers.nl/media/randommenu/petjesnieuw/pet';
LastPart = '.jpg" height="86" width="810" align="left" style="float: left;" /></a>';

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