function home_nav(id) {
	selections = new Array('rooms', 'facilities', 'contact', 'activities', 'photos', 'videos');
	for (i = 0; i < selections.length; i++) {
		$('h_'+selections[i]).style.display = 'none';
		$('t_'+selections[i]).className = '';
	}
	$('h_'+id).style.display = '';
	$('t_'+id).className = 'active';
}
