	//<![CDATA[
	
	var map;
	var geocoder = null;
	
	function load() {
		if (GBrowserIsCompatible()) {
			map = new GMap2(document.getElementById("map"));
			map.addControl(new GSmallMapControl());
			map.addControl(new GMapTypeControl());
			map.setCenter(new GLatLng(51.494210, -0.111237), 10);
			geocoder = new GClientGeocoder();
			//map.setMapType(G_HYBRID_MAP);
			map.setMapType(G_NORMAL_MAP);
		} else {
			alert("Googlemaps is incompatible with your system");
		}		
	}
    //]]>
