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 = -33.864870;
var setLon = 151.130467;
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(-33.864870, 151.130467), '<br /><h3>Site Location</h3>'));