/* 
  ------------------------------------
  Google Map
  ------------------------------------
*/

/* Initialise and load function for DropDown Menu. */
function init(){
	load();
	externalLinks();
	
    }

function load() {
	//check the browser for compatability
	if (GBrowserIsCompatible()) {
		//makes a new map and places it in div map also uses div map size for map
		var map = new GMap2(document.getElementById("map"));
		//this gives you the pan and zoom in and out controls
		map.addControl(new GSmallMapControl());
		//this gives you hybrid satellite and standard choices
		map.addControl(new GMapTypeControl());
		//the maps centre using lattitude and longitude also 16 is zoom facter
		map.setCenter(new GLatLng(-31.845865187251317, 115.81018522381783), 14);
		// Creates a marker at the given point with the given number label
		var point = new GLatLng(-31.845865187251317, 115.81018522381783);
		var marker = new GMarker(point);
		
		 function createMarker(point, marker) {
			GEvent.addListener(marker, "click", function() {
			marker.openInfoWindowHtml("Active Care<br />662 Beach Road<br />Warwick WA 6024");
				});
				return marker;
            }
            map.addOverlay(createMarker(point, marker));
            marker.openInfoWindowHtml("Active Care<br />662 Beach Road<br />Warwick WA 6024");
		
	}
}
