// GMap

function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
		var marker = new GMarker(new GLatLng(-36.926224,174.89375));
        map.setCenter(new GLatLng(-36.926224,174.89375), 15);
        map.setUIToDefault();
		map.addOverlay(marker);
		map.setMapType(G_SATELLITE_MAP);
		map.openInfoWindowHtml(map.getCenter(),
                   document.createTextNode("Hart Design, 272e Ti Rakau Drive, East Tamaki"));
      }

// display a warning if the browser was not compatible
    else {
      alert("Sorry, the Google Maps API is not compatible with this browser");
	}

}

// , {maxWidth: '250'}