
$(function() {
	if (GBrowserIsCompatible()) 
	{
		var map_id, centre, markers, map;
		
		map_id = 'map';
		
		centre = {
			coordinates: [-27.966157, 153.427380],
			zoom: 16
		};

		markers = [{
			description: '<div class="map_description"><strong>Palazzo Versace</strong><br />94 Sea World Drive<br />Main Beach, QLD 4217<br />Australia</div>',
			coordinates: [-27.967181, 153.426046]
		},{
			description: '<div class="map_description"><strong>Sheraton Mirage Resort</strong><br />Sea World Drive<br />Main Beach, QLD 4217<br />Australia</div>',
			coordinates: [-27.967256, 153.427731]
		}];

		map = new GMap2(document.getElementById(map_id));
		map.addControl(new GSmallZoomControl());
		map.addControl(new GMapTypeControl());

		map.setCenter(new GLatLng(centre.coordinates[0], centre.coordinates[1]), centre.zoom);
		map.setMapType(G_SATELLITE_MAP);
		
		$.each(markers, function() {
			var marker, description;
			marker = new GMarker(new GLatLng(this.coordinates[0], this.coordinates[1]));
			description = this.description;
			map.addOverlay(marker);
			GEvent.addListener(marker, 'click', function() { marker.openInfoWindowHtml(description); });
		});
		
	}
});

$(window).unload(function () { GUnload(); });