// JavaScript Document
    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(51.451750, -2.595000), 16);
		var icon = new GIcon();
		icon.image = "../logos/marker.gif";
		icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
		icon.iconSize = new GSize(40, 77);
		icon.shadowSize = new GSize(0, 0);
		icon.iconAnchor = new GPoint(20, 77);
		icon.infoWindowAnchor = new GPoint(30, 0);
		// Our info window content
		var winText = "<b>Sublime</b> <br>31 King Street";
		// Place a marker in the center of the map and open the info window
		// automatically
		var marker = new GMarker(map.getCenter(), icon);
		GEvent.addListener(marker, "click", function() {
  		marker.openInfoWindowHtml(winText);
		});
		map.addOverlay(marker);
		marker.openInfoWindowHtml(winText);
		}
		
    }


