function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.addControl(new GSmallMapControl());
        //map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(36.838275, -76.336764), 15);

        // Create a base icon for all of our markers that specifies the
        // shadow, icon dimensions, etc.
        var baseIcon = new GIcon();
        baseIcon.iconSize = new GSize(51, 51);
        baseIcon.iconAnchor = new GPoint(9, 34);

        // Creates a marker whose info window displays the letter corresponding
        // to the given index.
        function createMarker(point, index) {
          // Create a lettered icon for this point using our icon class
          var icon = new GIcon(baseIcon);
          icon.image = "images/scecon.png";
          var marker = new GMarker(point, icon);
          return marker;
        }

        // Add marker to the map
        var point = new GLatLng(36.840125, -76.337775);
        map.addOverlay(createMarker(point, 0));
      }
}