// Type the number of images you are rotating.

NumberOfImagesToRotate = 30;

// Specify the first and last part of the image tag.

FirstPart = '<img src="images/foodpix';
LastPart = '.jpg" height="475" width="200">';

function printImage() {
var r = Math.ceil(Math.random() * NumberOfImagesToRotate);
document.write(FirstPart + r + LastPart);
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
