// JavaScript Document
	
var images = new Array();

images.push('gfx/homeimgs/1.jpg');
images.push('gfx/homeimgs/3.jpg');
images.push('gfx/homeimgs/7.jpg');
images.push('gfx/homeimgs/4.jpg');
images.push('gfx/homeimgs/9.jpg');

function showImage() {
	var whichImage = Math.round(Math.random() * (images.length-1));
	document.write('<img src="'+images[whichImage]+'">');
}
