function createMarker(point, message) {
	var marker = new GMarker(point);
	//GEvent.addListener(marker, "click", function() {
	//marker.openInfoWindowHtml(message);
	//});
		return marker;
}

// This is where the map will start and how zoomed in
var setLat = -34.025846; //-34.021933;
var setLon = 151.128101; //151.12587;

var setZoom = 3; // bigger is zoomed out, smaller is zoomed in
var mapType = G_NORMAL_MAP;

var map = new GMap(document.getElementById("map"));

map.centerAndZoom(new GPoint(setLon, setLat), setZoom);
map.addControl(new GSmallZoomControl()); // added
map.addControl(new GMapTypeControl()); // added
map.removeMapType(G_SATELLITE_MAP); //removed
map.setMapType(mapType);
   
// This adds the points and the HTML when you click the point
map.addOverlay(createMarker(new GLatLng(-34.024800, 151.127501), '<br /><h3>Site Location</h3>'));
