function showRoom(theRoom, totalRooms) {
	for(x=0; x <= totalRooms; x++) {
		document.getElementById('room' + x).style.display = 'none';
		document.getElementById('roomlink' + x).style.color = '#cc913b';
	}
	document.getElementById('room' + theRoom).style.display = 'block';
	document.getElementById('roomlink' + theRoom).style.color = '#fff';
}