//<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
	 var map = new GMap2(document.getElementById("map"));
     map.addControl(new GSmallMapControl());
     map.setCenter(new GLatLng(41.883557,-87.637167), 15);

        // Create a base icon for all of our markers that specifies the
        // shadow, icon dimensions, etc.
        var baseIcon = new GIcon();
        baseIcon.shadow = "http://www.fitem.linkness.com/images/shadow.png";
        baseIcon.iconSize = new GSize(23, 34);
        baseIcon.shadowSize = new GSize(37, 34);
        baseIcon.iconAnchor = new GPoint(9, 34);
        baseIcon.infoWindowAnchor = new GPoint(9, 2);
        baseIcon.infoShadowAnchor = new GPoint(18, 25);

        // 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 letter = String.fromCharCode("A".charCodeAt(0) + index);
          var icon = new GIcon(baseIcon);
          icon.image = "http://www.fitem.linkness.com/images/fitem_map.png";
          var marker = new GMarker(point, icon);

          GEvent.addListener(marker, "click", function() {
            marker.openInfoWindowHtml("<h3 style='margin: 0px 0px 0px 5px;'>FITEM USA<\/h3><p style='margin: 5px 0px 20px 5px;'>c/o Venture USA - Civic Opera Building<br />20 North Wacker Drive - Suite 1434 - Chicago, IL 60606<br />T. 312 795 9131 - F. 312 795 9137<br /><strong>info@fitem.com</strong><\/p>");
          });
          return marker;
        }

        // Add 10 markers to the map at random locations
        var bounds = map.getBounds();
        var southWest = bounds.getSouthWest();
        var northEast = bounds.getNorthEast();
        var lngSpan = northEast.lng() - southWest.lng();
        var latSpan = northEast.lat() - southWest.lat();
        for (var i = 0; i < 1; i++) {
             var point = new GLatLng(41.883557,-87.637167);
             map.addOverlay(createMarker(point, i + 1));
            }
       }
    }

    //]]>