window.onload = function() {
	var bimages = ["/images/rebrand/homepage/room1.gif", "/images/rebrand/homepage/room2.gif", "/images/rebrand/homepage/room3.gif", "/images/rebrand/homepage/room4.gif"];
	var bicopy = [];
	bicopy.push({room:"Bingo Hollywood",url:"/games/rules/90-ball-bingo.html"});
		bicopy.push({room:"Bingo Ganga",url:"/news/item/bargain_bingo.html"});
		bicopy.push({room:"Bingo Supernova",url:"/games/rules/75-ball-bingo.html"});

	
	var rand = Math.floor(Math.random()*3);
	newImage = "url("+bimages[rand]+")";
	document.getElementById("room_title").innerHTML = "<a href='" + bicopy[rand].url + "'>" + bicopy[rand].room + "</a>";
	document.getElementById('rotate').style.backgroundImage = newImage;
}