function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        //map.addControl(new GSmallMapControl());
        map.addControl(new GSmallZoomControl());
				//map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(53.552126, 9.996593), 16);

        // 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(map.getCenter(), addressData);
        //map.addOverlay(new GMarker((51.124213, 10.546875), icon));
        map.addOverlay(marker);
        // Show marker always (not only on click)
        //marker.openInfoWindow(addressData);
      }
      
      if (GBrowserIsCompatible()) {
        var map2 = new GMap2(document.getElementById("map2"));
        //map.addControl(new GSmallMapControl());
        map2.addControl(new GSmallZoomControl());
				//map.addControl(new GMapTypeControl());
        map2.setCenter(new GLatLng(54.772474, 9.674406), 16);
        
        // 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(map2.getCenter(), addressData);
        //map.addOverlay(new GMarker((51.124213, 10.546875), icon));
        map2.addOverlay(marker);
        // Show marker always (not only on click)
        //marker.openInfoWindow(addressData);
      }
      
      if (GBrowserIsCompatible()) {
        var map3 = new GMap2(document.getElementById("map3"));
        //map.addControl(new GSmallMapControl());
        map3.addControl(new GSmallZoomControl());
				//map.addControl(new GMapTypeControl());
        map3.setCenter(new GLatLng(54.281437, 10.24209), 16);
        
        // 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(map3.getCenter(), addressData);
        //map.addOverlay(new GMarker((51.124213, 10.546875), icon));
        map3.addOverlay(marker);
        // Show marker always (not only on click)
        //marker.openInfoWindow(addressData);
      }
    }
