function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.addControl(new GSmallZoomControl());
				//map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(53.577423, 7.78038), 9);
        
        // Create our "tiny" marker icon
        var icon = new GIcon();
        icon.image = "http://maps.google.com/mapfiles/kml/pal3/icon31.png";//"http://labs.google.com/ridefinder/images/mm_20_red.png";
        icon.shadow = "http://maps.google.com/mapfiles/kml/pal3/icon31s.png";//"http://labs.google.com/ridefinder/images/mm_20_shadow.png";
        icon.iconSize = new GSize(32, 32);//new GSize(12, 20);
        icon.shadowSize = new GSize(56, 32);//new GSize(22, 20);
        icon.iconAnchor = new GPoint(16, 32);//new GPoint(6, 20);
        icon.infoWindowAnchor = new GPoint(24, 15);//new GPoint(5, 1);
				
        // Creates a marker at the given point with the given number label
				function createMarker(point, data) {
				  var marker = new GMarker(point, icon);
				  /*GEvent.addListener(marker, "click", function() {
				    marker.openInfoWindow(data);
				  });*/
				  return marker;
				}

        
        // Add marker to the map
        var addressData = document.getElementById("address_data");
        var marker = createMarker(new GLatLng(53.750436, 7.492375), addressData);
        //map.addOverlay(new GMarker((53.750436, 7.492375), icon));
        map.addOverlay(marker);
        // Show marker always (not only on click)
        //marker.openInfoWindow(addressData);
      }
    }