// JavaScript Document
    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
			var map = new GMap2(document.getElementById("map"));
			map.addControl(new GSmallMapControl());
			map.addControl(new GMapTypeControl());
			map.setCenter(new GLatLng(-16.92118,145.778961), 13);
			map.openInfoWindowHtml(map.getCenter(),"<b>Kraken Marine Services Pty. Ltd. (AU) </b><br/>Shangri-La Executive Offices <br/>The Marina, Pierpoint Road<br>Cairns, Qld. 4870, Australia<br>Tel +61 (0)7 3123 5165");

// Place a marker in the center of the map and open the info window
// automatically
var marker = new GMarker(map.getCenter());
GEvent.addListener(marker, "click", function() {
  marker.openInfoWindowTabsHtml(infoTabs);
});
map.addOverlay(marker);

      }
    }

    //]]>