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 = -27.958300;
var setLon = 153.402500;
var setZoom = 3; // bigger is zoomed out, smaller is zoomed in
var mapType = G_NORMAL_MAP;

var map2 = new GMap(document.getElementById("map2"));

map2.centerAndZoom(new GPoint(setLon, setLat), setZoom);
map2.addControl(new GSmallZoomControl()); // added
map2.addControl(new GMapTypeControl()); // added
map2.removeMapType(G_SATELLITE_MAP); //removed
map2.setMapType(mapType);
   
// This adds the points and the HTML when you click the point
map2.addOverlay(createMarker(new GLatLng(-27.958300, 153.402500), '<br /><h3>Site Location</h3>'));