function load() {
  if (GBrowserIsCompatible()) {
  var map = new GMap2(document.getElementById("map"));
 
 //map.setMapType(G_HYBRID_TYPE);
  
  //map.enableScrollWheelZoom();
  map.addControl(new GLargeMapControl());
  map.addControl(new GMapTypeControl());
 //map.addControl(new GOverviewMapControl(), new GControlPosition(G_ANCHOR_BOTTOM_RIGHT, new GSize(0, 0))); 
 
      
  map.setCenter(new GLatLng(53.546357,9.863501), 13, G_HYBRID_MAP);
    
  // Place a marker in the center of the map and open the info window
  // automatically
  var marker = new GMarker(map.getCenter());
  GEvent.addListener(marker, "click", function() {
    marker.openInfoWindowHtml("<b>Restaurant Engel</b><br/>Landeanlage Teufelsbrück<br/>22609 Hamburg");
  });
  map.addOverlay(marker);
  marker.openInfoWindowHtml("<b>Restaurant Engel</b><br/>Landeanlage Teufelsbrück<br/>22609 Hamburg");
      
  }
}
