function showList(which) {
	hideAll();
	document.getElementById(which).style.display = "inline";
	return;
}

function hideAll() {
	var areas = new Array( 'live', 'work', 'play' );
	for( i=0; i<areas.length; i++ ) {
		document.getElementById(areas[i]).style.display = "none";
	}
}


function openPopup() {
	//Opens a window for tour
	
	tourWindow = window.open( "tour.html", "TakeATour", "width=500,height=600" );
	
}
