	function showMap(whichSection){
	
		if(whichSection != "included"){
			document.getElementById('includedSpan').style.backgroundImage = "url(/images/trips/included.gif)";
			document.getElementById('includedView').style.display = "none";
		}
		else{
			document.getElementById('includedSpan').style.backgroundImage = "url(/images/trips/included_over.gif)";
			document.getElementById('includedView').style.display = "block";
		}
	
		if(whichSection != "weather"){
			document.getElementById('weatherSpan').style.backgroundImage = "url(/images/trips/weather.gif)";
			document.getElementById('weatherView').style.display = "none";
		}
		else{
			document.getElementById('weatherSpan').style.backgroundImage = "url(/images/trips/weather_over.gif)";
			document.getElementById('weatherView').style.display = "block";
		}
	
		if(whichSection != "map"){
			document.getElementById('mapSpan').style.backgroundImage = "url(/images/trips/map.gif)";
			document.getElementById('mapView').style.display = "none";
		}
		else{
			document.getElementById('mapSpan').style.backgroundImage = "url(/images/trips/map_over.gif)";
			document.getElementById('mapView').style.display = "block";
		}
	}
	