	/*  Random header photo generator */
	var mdw_photo_count		= 5;				// Change this nubmer as images are added or removed.
	var mdw_photo_prefix	= "header_quote";	// This is what the filename must begin with before its unique number
	var mdw_photo_suffix	= ".gif";			// This is what the filename must end with after the unique number
	
	function mdw_random_photo() {
	    var mdw_photo_chosen = mdw_photo_prefix + ( Math.floor(Math.random() * mdw_photo_count) + 1 ) + mdw_photo_suffix;
	    document.write('<img src="http://morrisdigitalworks.com/images/mast_pictures/' + mdw_photo_chosen + '" width="257" height="91" border="0" alt="" />');
	}