function randomize(min, max) {
	if (!min)
		min = 0;
	if (!max)
		max = 1;
	return Math.floor(Math.random()*(max+1)+min);
}
function randomBg() {
	var bgs = new Array();
 
	// I took these images from a site with a similar script already only to get example images
	// I wrote this script myself
	bgs.push("http://www.tancoline.com/images/line_banner_020910.jpg");
	bgs.push("http://www.tancoline.com/images/group_banner_020910.jpg");
	bgs.push("http://www.tancoline.com/images/chest_banner_020910.jpg");
	bgs.push("http://www.tancoline.com/images/spray_banner_020910.jpg");
 
	document.getElementById('MainTable').style.backgroundImage = "url(" + bgs[randomize(0, bgs.length-1)] + ")";
}