function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
	var point = new GLatLng(47.509397, 19.071450);
	map.addOverlay(new GMarker(point));
        map.setCenter(new GLatLng(47.509397, 19.071450), 16);
        map.setUIToDefault();
      }
    }