function initialize() {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map_canvas"));
		map.setCenter(new GLatLng(50.7056, 15.4512), 13);
		map.setUIToDefault();
                map.openInfoWindow(map.getCenter(),
                document.createTextNode("Apartmán Buřany"));
	}
}
