// JavaScript Document

function randomImage()
{
	var max = 4;
	number = Math.random() * max + 1;
	which = Math.round(number);
	image = '<img src="http://www.doggonegoodplace.com/images/banner/banner_' + which + '.jpg" border="0" />';
	return image;
}
