// JavaScript Document
function loadimg() {
	var image = new Array();
	image[0] = '/img/back-todays1.jpg';
	image[1] = '/img/back-todays2.jpg';
	image[2] = '/img/back-todays3.jpg';
	image[3] = '/img/back-todays4.jpg';
	var index = Math.floor(Math.random() * image.length);
	document.write('<TD valign="middle" style="background-image:url('+ image[index] +');" width="797" height="304">');
}