// Javascript Document
    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map"));
		map.addControl(new GSmallMapControl());
		map.setCenter(new GLatLng(51.27839, 1.100713), 11);
		
		// Create our "tiny" marker icon
		var icon = new GIcon();
		icon.image = "images/theme/content_map_marker.png";
		icon.iconSize = new GSize(35, 43);
		icon.iconAnchor = new GPoint(20, 43);
		icon.infoWindowAnchor = new GPoint(5, 1);
		//icon.image = "http://labs.google.com/ridefinder/images/mm_20_blue.png";
		//icon.iconSize = new GSize(12, 20);
		//icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
		//icon.shadowSize = new GSize(22, 20);
		//icon.iconAnchor = new GPoint(6, 20);
		//icon.infoWindowAnchor = new GPoint(5, 1);
		
		// Add marker location
        var bounds = map.getBounds();
        var southWest = bounds.getSouthWest();
        var northEast = bounds.getNorthEast();
        var lngSpan = northEast.lng() - southWest.lng();
        var latSpan = northEast.lat() - southWest.lat();
          var point = new GLatLng(51.27839, 1.100713);
          map.addOverlay(new GMarker(point, icon));
      }
    }


    //]]>