//<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(51.505684,-0.139153), 14);
	      map.addControl(new GSmallMapControl());
	      // Create our "tiny" marker icon
	      var icon = new GIcon();
	      icon.image = "http://labs.google.com/ridefinder/images/mm_20_red.png";
	      icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
	      icon.iconSize = new GSize(12, 20);
	      icon.shadowSize = new GSize(22, 20);	
	      icon.iconAnchor = new GPoint(6, 20);
	      // Place a marker in the center of the map and open the info window
	      // automatically
	      var marker = new GMarker(map.getCenter());
	      map.addOverlay(marker);
      }
    }
    //]]>

