function ShowCommunity(community) {

	//Hide layers and fix borders
	for(i=0; i<3; i++) {
		document.getElementById("community_info_" + i).style.visibility = "hidden";
		document.getElementById("community_button_" + i).style.borderBottomColor = "#036";
		document.getElementById("community_button_" + i).style.backgroundColor = "#87744c";
		
	}
		
	//Show layer
	document.getElementById("community_info_" + community).style.visibility = "visible";

	//Fix up borders and backgrounds
	document.getElementById("community_button_" + community).style.borderBottomColor = "#eae3d0";
	document.getElementById("community_button_" + community).style.backgroundColor = "#eae3d0";
	}
