function initialize() {
 
  if (GBrowserIsCompatible()) {
    var map = new GMap2(document.getElementById("map_canvas"));
    map.addControl(new GSmallMapControl());
    map.addControl(new GMapTypeControl());
    map.setCenter(new GLatLng(52.493756, 19.510689), 12);
  
    // Creates a marker at the given point
    // Clicking the marker will hide it
    function createMarker(point, number) {
      var marker = new GMarker(point);
      marker.value = number;
      GEvent.addListener(marker,"click", function() {
        var myHtml = "<div style='font-size: 18px;'><b>Jacek</b><br>513-129-887</div>";
        map.openInfoWindowHtml(point, myHtml);
      });
	  return marker;
    }
    
      var point = new GLatLng(52.493756,19.510689);
	  map.addOverlay(createMarker(point, 0));
  }
}