<!--
// Tells us how many images we have available.
var imgNumber = 6;

// Tells us generic image name (without the number), eg. 'image' in 'image4.gif'
var imgName = 'image';

// Tells us extension of images
var imgExt = '.jpg';

// Tells us location of images to use (don't forget trailing /)
//var imgLocation = 'http://www.molst-ma.org/images/rotate/';
var imgLocation = '/images/rotate/';

// function to show a random image from the image array
function showRandomImage() 
{
	// random number between 1 and imgNumber
	var rnd = Math.ceil(Math.random()*imgNumber);

	// Write the img tag with a random image name.
	document.write("<img src='" + imgLocation + imgName + rnd + imgExt + "' />");
}

-->

