function loadSyd() {
if (GBrowserIsCompatible()) {
	var map = new GMap2(document.getElementById("mapSydney"));
	map.addControl(new GSmallMapControl());
	map.setCenter(new GLatLng(-33.881170,151.217098), 15);
	// Create our "tiny" marker icon
	var tinyIcon = new GIcon();
	tinyIcon.image = "http://labs.google.com/ridefinder/images/mm_20_red.png";
	tinyIcon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
	tinyIcon.iconSize = new GSize(12, 20);
	tinyIcon.shadowSize = new GSize(22, 20);
	tinyIcon.iconAnchor = new GPoint(6, 20);
	tinyIcon.infoWindowAnchor = new GPoint(5, 1);
	// Set up our GMarkerOptions object literal
	markerOptions = { icon:tinyIcon };
	// Add marker to the map
	  var point = new GLatLng(-33.881170,151.217098);
	  map.addOverlay(new GMarker(point, markerOptions));
	}
}
function loadMel() {
if (GBrowserIsCompatible()) {
	var map = new GMap2(document.getElementById("mapMelbourne"));
	map.addControl(new GSmallMapControl());
	map.setCenter(new GLatLng(-37.847032,144.993152), 15);
	// Create our "tiny" marker icon
	var tinyIcon = new GIcon();
	tinyIcon.image = "http://labs.google.com/ridefinder/images/mm_20_red.png";
	tinyIcon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
	tinyIcon.iconSize = new GSize(12, 20);
	tinyIcon.shadowSize = new GSize(22, 20);
	tinyIcon.iconAnchor = new GPoint(6, 20);
	tinyIcon.infoWindowAnchor = new GPoint(5, 1);
	// Set up our GMarkerOptions object literal
	markerOptions = { icon:tinyIcon };
	// Add marker to the map
	  var point = new GLatLng(-37.847032,144.993152);
	  map.addOverlay(new GMarker(point, markerOptions));
	}
}
