<!-- Begin
// Set up the image files to be used.
var gallery = new Array();
gallery[0] = new Array("h-3-b.jpg","h-3-f.jpg","h-3-g.jpg");
gallery[1] = new Array("h-6-a.jpg","h-6-b.jpg");
gallery[2] = new Array("h-16-a.jpg","h-16-b.jpg","h-16-c.jpg","h-16-d.jpg","h-16-e.jpg","h-16-f.jpg");
gallery[3] = new Array("h-17-a.jpg","h-17-b.jpg","h-17-c.jpg","h-17-d.jpg","h-17-e.jpg");

function pickImageFrom(whichGallery)
{
var idx = Math.floor(Math.random() * gallery[whichGallery].length);
document.write('<img src="images/' + gallery[whichGallery][idx] + '">');
}

//  End -->