    var map;
    var geoXml; 
    var geoXml2; 
    var geoXml3; 


    function initialize() {
      if (GBrowserIsCompatible()) {
        geoXml = new GGeoXml("http://www.savannahway.com.au/kml/katherine-broome_main.kml");
        geoXml2 = new GGeoXml("http://www.savannahway.com.au/kml/katherine-broome_alt.kml");
        geoXml3 = new GGeoXml("http://www.savannahway.com.au/kml/katherine-broome_places.kml");
        map = new GMap2(document.getElementById("bk-places")); 
        map.setCenter(new GLatLng(-16.304323337114724,127.1392822265625), 6); 
        map.setUIToDefault();
        map.addOverlay(geoXml);
        map.addOverlay(geoXml2);
        map.addOverlay(geoXml3);
      }  
    } 


