function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.addControl(new GSmallMapControl());
        map.setCenter(new GLatLng(53.46232478003855, -6.21800422668457), 13);
        
        var icon = new GIcon();
		icon.image = "http://www.carnegiecourt.com/images/c.png";
		//icon.shadow = "http://www.velvetdublin.com/images/vs.png";
		icon.iconSize = new GSize(25, 24);
		//icon.shadowSize = new GSize(25, 24);
		icon.iconAnchor = new GPoint(0, 24);
		icon.infoWindowAnchor = new GPoint(0, 24);

        // Creates a marker at the given point with the given number label
        function addMarker(map, point, icon) {
		var marker = new GMarker(point, icon);
		map.addOverlay(marker);
		GEvent.addListener(marker, "click", function() {
        marker.openInfoWindowHtml("<div style=\"color: black; font-size: 12px; font-weight: bold\">Carnegie Court</div>");
          });
          // return marker;
        }

		  var point = new GLatLng(53.46232478003855, -6.21800422668457);
          // map.addOverlay(createMarker(point, icon));
          
          // map.addOverlay(new GMarker(point, icon));
          
          addMarker(map, point, icon);
        
      }
    }