    var map;
    var geoXml; 
    var geoXml2; 
    var geoXml3; 


    function initialize() {
      if (GBrowserIsCompatible()) {
        geoXml = new GGeoXml("http://www.savannahway.com.au/kml/normanton-katherine_main.kml");
        geoXml2 = new GGeoXml("http://www.savannahway.com.au/kml/normanton-katherine_gate.kml");
        map = new GMap2(document.getElementById("kn-gate")); 
        map.setCenter(new GLatLng(-16.277960306212524,136.494140625), 6); 
        map.setUIToDefault();
        map.addOverlay(geoXml);
        map.addOverlay(geoXml2);
      }  
    } 


