function writeImageVerse(max) {
	var img = Math.floor(Math.random() * max);

	tmpl = "<div id='randimg' class='randimg{num}'><a href='http://www.christianwomenonline.net/scripturetags.html'></a></div>";
	tmpl = tmpl.replace(/\{num\}/g, img);

	document.write(tmpl);
}