function load() {
      if (GBrowserIsCompatible()) {
				var map = new GMap2(document.getElementById("map"));
				map.addControl(new GSmallZoomControl());
				map.setCenter(new GLatLng(51.242548, -0.20390), 17); 
function createMarker(point, number) {
          var marker = new GMarker(point);
          GEvent.addListener(marker, "click", function() {
            marker.openInfoWindowHtml("<strong>Tony's Tattoo Studio</strong><br /><br />01737 226 131<br /><a href='http://www.tonystattoos.co.uk/' class='maplink'>http://www.tonystattoos.co.uk/</a>");
          });
          return marker;
        }
				map.addOverlay(createMarker(new GPoint(-0.204300, 51.242300)));
			}
    }