// The Central Randomizer 1.3 (C) 1997 by Paul Houle (houle@msc.cornell.edu)
// See:  http://www.msc.cornell.edu/~houle/javascript/randomizer.html
rnd.today=new Date();
rnd.seed=rnd.today.getTime();

function rnd() {
	rnd.seed = (rnd.seed*9301+49297) % 233280;
	return rnd.seed/(233280.0);
};

function rand(number) {
	return Math.ceil(rnd()*number);
};
// End of Central Randomizer


var id = rand(5);
if(id == 1) {
	document.write('<img id="picture" width="550" height="250" src="../images/titleZucchiniboy.png" />');
}
else if(id == 2) {
	document.write('<img id="picture" width="550" height="250" src="../images/titlePompousGeorge.png" />');
}
else if(id == 3) {
	document.write('<img id="picture" width="550" height="250" src="../images/titleBob.png" />');
}
else if(id == 4) {
	document.write('<img id="picture" width="550" height="250" src="../images/titleSnowmen.jpg" />');
}
else if(id == 5) {
	document.write('<img id="picture" width="550" height="250" src="../images/titleWienerboy.png" />');
}