// JavaScript Document

    //<![CDATA[



    function load() {

      if (GBrowserIsCompatible()) {

			var map = new GMap2(document.getElementById("map"));

			map.addControl(new GSmallMapControl());

			map.addControl(new GMapTypeControl());

			map.setCenter(new GLatLng(17.014019, -61.733744), 14);

			map.openInfoWindowHtml(map.getCenter(),"<b>The Blue Pelican Villa </b><br/>St James club <br>PO Box # 63 Mamora Bay<br> St John's, Antigua <br>Tel: +44 07770 304027");



// Place a marker in the center of the map and open the info window

// automatically

var marker = new GMarker(map.getCenter());

GEvent.addListener(marker, "click", function() {

  marker.openInfoWindowHtml();

});

map.addOverlay(marker);



      }

    }



    //]]>