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

		var icon = new GIcon();
		icon.image = "http://gmaps-samples.googlecode.com/svn/trunk/markers/blue/blank.png";
		icon.iconSize = new GSize(15, 20);
		icon.iconAnchor = new GPoint(15, 20);
		icon.infoWindowAnchor = new GPoint(15, 20);

		// 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(47.855013,12.004677);
		map.addOverlay(createMarker(point, "Thomas Jannot<br />Kranzhornstr. 4b<br />D-83043 Bad Aibling<br />+49 8061 348111"));

       }
    }

