	
	function loadGoogleMap() {
		//<![CDATA[

		// Check to see if this browser can run the Google API
		if (GBrowserIsCompatible()) {

			var gmarkers = [];
			var htmls = [];
			var to_htmls = [];
			var from_htmls = [];

			// A function to create the marker and set up the event window
			function createMarker( point ) {
				var marker = new GMarker(point);

				// The info window version with the "to here" form open
				html = 	'<div id="bubble">' +
							'<h2>Visiting Us</h2>' +
							'<p>We are situated just outside the town centre, just off of Wakefield Road.</p>' +
							'<p><a href="http://www.google.co.uk/maps?f=d&hl=en&saddr=&daddr=HD1+3AW&ie=UTF8&z=16&ll=53.641102,-1.7747&spn=0.006322,0.021629&om=1&iwloc=addr">Get directions from Google Maps&trade;</a></p>' + 
						'</div>';
				
				GEvent.addListener(marker, "click", function() {
					marker.openInfoWindow(html);
				});
				gmarkers[0] = marker;
				htmls[0] = html;
				return marker;
			}

			// Display the map, with some controls and set the initial location 
			var map = new GMap2(document.getElementById("map") );
			map.addControl(new GSmallMapControl());
			map.addControl(new GMapTypeControl());
			map.setCenter(new GLatLng( 53.64555 , -1.782 ), 14);

			// Set up three markers with info windows 
			var point = new GLatLng( 53.640438 , -1.774822 );
			var marker = createMarker(point);
			map.addOverlay(marker);

		} else {
			// Do nothing as a static image of the map will be present
		}

	}//EOM loadGoogleMap