<!--//
$(document).ready(function() {

	// create the map
	var map = new GMap2(document.getElementById("gMap"));
	var mapname = 'gMap';

	var info = "<b>The Irish Parachute Club</b><small><br />Clonbollogue Airfield<br />Edenderry<br />Co. Offaly<br />1850 260 600</small>";
	var centre = new GLatLng(53.249142,-7.12326);

	if (GBrowserIsCompatible()) {

		// add the nav control
		map.addControl(new GSmallMapControl());

		// add the map type control
		map.addControl(new GMapTypeControl());

		// set the centre of the map
		map.setCenter(centre, 8);

		// create the market
		var marker = new GMarker(centre, {draggable:false});

		// add the marker to the map
		map.addOverlay(marker);

		// show the map window
		marker.openInfoWindowHtml(info);

		GEvent.addListener(marker, "click", function() {
			marker.openInfoWindowHtml(info);
			});
	}
});
//-->
