window.onload = function() {
	var bimages = ["/images/rebrand/homepage/room1.gif", "/images/rebrand/homepage/room2.gif"];
	var bicopy = [];
	bicopy.push({room:"Movie Madness Bingo Room",url:"/games/rules/75-ball-bingo.html"});
	bicopy.push({room:"Holy Soap Bingo Room",url:"/games/rules/90-ball-bingo.html"});
	
	var rand = Math.floor(Math.random()*2);
	newImage = "url("+bimages[rand]+")";
	document.getElementById("room_title").innerHTML = "<a href='" + bicopy[rand].url + "'>" + bicopy[rand].room + "</a>";
	document.getElementById('rotate').style.backgroundImage = newImage;
}