    //<![CDATA[

    function loadMap() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.addControl(new GSmallMapControl());
        map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(-33.868297, 151.211692), 17);
		
		// set map type to satellite
		// Types: G_NORMAL_MAP or G_SATELLITE_MAP or G_HYBRID_MAP
		map.setMapType(G_NORMAL_MAP);

    	//Icon for RBA
    	var iconRBA = new GIcon();
    	iconRBA.image ="http://www.rba.gov.au/_Images/rba_logo_google_map.gif";
    	iconRBA.iconSize= new GSize (27, 24);
   		iconRBA.iconAnchor = new GPoint(6, 20);
		var pointRBA = new GLatLng(-33.868308, 151.211697);
		map.addOverlay(new GMarker(pointRBA, iconRBA));


        // Our info window content
        var infoTabs = [
        new GInfoWindowTab("Address", "<div class='google_tabs'><strong>Museum of Australian Currency Notes&nbsp;&nbsp;</strong><br />Reserve Bank of Australia<br />Ground Floor, 65 Martin Place<br />Sydney NSW 2000<br /> Australia</div>"),
		new GInfoWindowTab("Contact", "<div class='google_tabs'><strong>Phone:</strong> +61 2 9551 9743 or +61 2 9551 9762 &nbsp; &nbsp;  <br /> <strong>E-mail:</strong> <a href=mailto:museum@rba.gov.au>museum@rba.gov.au</a></div>")
		  ];

        // 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);
        marker.openInfoWindowTabsHtml(infoTabs);
      }
    }

    //]]>
