$(function() { // when the document is ready to be manipulated.

	if (GBrowserIsCompatible()) { // if the browser is compatible with Google Map's
		var map = document.getElementById("myMap"); // Get div element
		var m = new GMap2(map); // new instance of the GMap2 class and pass in our div location.
		
		var point = new GLatLng(-37.823503,145.080589);
		m.setCenter(point, 13);
		// Create custom marker icon
		var cycleIcon = new GIcon(G_DEFAULT_ICON);
		cycleIcon.image = "http://www.omegaadvertising.com.au/images/common/map_icon.png";
		cycleIcon.iconSize = new GSize(32, 37);

						
		// Set up our GMarkerOptions object
		markerOptions = { icon:cycleIcon };
		
		var marker = new GMarker(point, markerOptions);
		m.addOverlay(marker);

		m.setMapType(G_NORMAL_MAP); // sets the default mode. G_NORMAL_MAP, G_HYBRID_MAP

//		var c = new GMapTypeControl(); // switch map modes
//		m.addControl(c);

		m.addControl(new GLargeMapControl3D()); // creates the zoom feature
	}
	else {
		alert("Please upgrade your browser");
	}
}); 
