function load() {
	if (GBrowserIsCompatible()) {
		map = new GMap2(document.getElementById("map_canvas"));
		map.setMapType(G_SATELLITE_MAP);
		map.setCenter(new GLatLng(37.4419, -122.1419), 13);
		geocoder = new GClientGeocoder();
	}
}

function showAddress() {
	var geocoder = new GClientGeocoder();
	geocoder.getLatLng(
			address,
			function(point) {
				if (!point) {
					$('.map').hide();
				} else {
					map.addControl(new GSmallMapControl());
					map.setCenter(point, 16);
					var marker = new GMarker(point);
					map.addOverlay(marker);
				}
			}
	);
	
	
}
