function initialize() {
  if (GBrowserIsCompatible()) {
	var map = new GMap2(document.getElementById("map_canvas"));
	map.setCenter(new GLatLng(51.056151,14.004822), 12);
	map.setUIToDefault();

	// Create a base icon for all of our markers that specifies the
	// shadow, icon dimensions, etc.
	var baseIcon = new GIcon(G_DEFAULT_ICON);
	baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png";
	baseIcon.iconSize = new GSize(20, 34);
	baseIcon.shadowSize = new GSize(37, 34);
	baseIcon.iconAnchor = new GPoint(9, 34);
	baseIcon.infoWindowAnchor = new GPoint(9, 2);

	point = new GLatLng(51.05530175222375, 	14.000873565673828);
    var marker = new GMarker(point);		
	var text = "carconnect - Hauptstr. 60 - Wilschdorf";
	map.addOverlay(marker);
	GEvent.addListener(marker, "click", function() {
		marker.openInfoWindowHtml("<b>car</b>connect <br /> Alte Hauptstra&szlig;e 60 <br /> 01833 D&uuml;rrr&ouml;hrsdorf&nbsp;/&nbsp;Dittersbach<br />OT Wilschdorf");
    });
		
  }
}
