
  google.load("maps", "2.x");
   
  // Call this function when the page has been loaded
 function initialize() {
      if (GBrowserIsCompatible()) {
      
        var map = new GMap2(document.getElementById("map"));
		  map.setMapType(G_SATELLITE_MAP);
        map.setCenter(new GLatLng(52.912428,-2.138418),15);
       	map.setUIToDefault();
		
		var boostIcon = new GIcon(G_DEFAULT_ICON, "http://oyster-creative.co.uk/images/map_icon.png");
		markerOptions = { icon:boostIcon };
		with(boostIcon) {
			iconSize = new GSize(63,33);
			iconAnchor = new GPoint(20, 40);
			
			shadow = 'http://oyster-creative.co.uk/images/icon_shadow.png';
			shadowSize = new GSize(63,33);			
		}
	     
		// Set up our GMarkerOptions object
        var latlng = new GLatLng(52.912121, -2.138190);
        map.addOverlay(new GMarker(latlng, markerOptions));

      }
    }

  google.setOnLoadCallback(initialize);
