    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(51.546989, -0.07507), 16);
		
	// custom icon
	baseIcon = new GIcon();
	baseIcon.image = "http://servingfriends.co.uk/friends/wp-content/themes/template/images/friends-marker.png";
	baseIcon.shadow = "http://servingfriends.co.uk/friends/wp-content/themes/template/images/friends-marker.png";
	baseIcon.iconSize = new GSize(23, 26);
	baseIcon.shadowSize = new GSize(0, 0);
	baseIcon.iconAnchor = new GPoint(17, 11);
	baseIcon.infoWindowAnchor = new GPoint(10, -5); 
	
	 function createMarker(point,html) {
        var marker = new GMarker(point,baseIcon);
        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(html);
        });
        return marker;
      }
		
		// Set up markers with info window
    
      var point = new GLatLng(51.546989, -0.07507);
      var marker = createMarker(point,'<div style="width:240px; font-family:arial;"><b>FriendsOfOurs</b><br/><br/>The Print House<br/>18 Ashwin Street<br/>London<br/>E8 3DL<br/><br/>Tel: +44 (0)780 300 1080</div>');
      map.addOverlay(marker);
		
      }
    }

    //]]>
