    function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
			map.addControl(new GSmallMapControl());
			map.addControl(new GMapTypeControl());	
        map.setCenter(new GLatLng(54.093084, 12.14418), 15);

		var icon = new GIcon();
		icon.image = "http://www.mde-finanz.de/images/logo_anfahrt.png";
		icon.iconSize = new GSize(76, 76);
		icon.iconAnchor = new GPoint(17, 65);
		icon.infoWindowAnchor = new GPoint(17, 65);

		// Creates a marker at the given point with the given number label
		function createMarker(point, info) {
		  var marker = new GMarker(point, icon);
		  GEvent.addListener(marker, "click", function() {
			marker.openInfoWindowHtml(info);
		  });
		  return marker;
		}

		var point = new GLatLng(54.093084, 12.14418);
		map.addOverlay(createMarker(point, "<b>MDE Finanz AG</b><br />Am Strande 3<br />18055 Rostock<br /><br />Tel: 0381 44 43 11 0<br />Fax: 0381 44 43 11 20"));

       }
    }

