function topRandomizer() {
	num = 5;
	index = Math.floor(Math.random() * num);
	if(index < 10) {
		index = "0" + index;
	}
	document.write('<img src="images/top_random' + index + '.jpg" alt="random image' + index + '" width="802" height="258" />');
}
