$(document).ready(function() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.addControl(new GSmallMapControl());
        map.addControl(new GOverviewMapControl());
        map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(53.5007, 12.6851), 15, G_HYBRID_MAP);

        // Creates a marker at the given point with the given number label
        function createMarker(point, info) {
        var marker = new GMarker(point);
        GEvent.addListener(marker, "click", function() {
        marker.openInfoWindowHtml(info);
        });
        return marker;
        }
        var point = new GLatLng(53.5007, 12.6851);
        map.addOverlay(createMarker(point, "<b>Ringhotel Villa Margarete</b><br />Fontanestrasse 11<br /> D-17192 Waren (Müritz)<br /> "));
      }
});
