    function load() {
      if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map"));
	map.addControl(new GSmallMapControl());
	//map.addControl(new GMapTypeControl());
	map.setCenter(new GLatLng(54.50137,-6.04146), 13);


	
	// Place a marker in the center of the map and open the info window
	// automatically
	var marker = new GMarker(new GLatLng(54.50137,-6.04146));
	GEvent.addListener(marker, "click", function() {
  	marker.openInfoWindowTabsHtml(infoTabs);
	});
	map.addOverlay(marker);
	marker.openInfoWindowTabsHtml(infoTabs);
		
      }
    }

// set event handlers to load and unload our map
jQuery(document).ready(load);
jQuery('body').unload(GUnload);
