function map_init() {
	if (GBrowserIsCompatible()) {

		var mapaSolum = new GMap2(document.getElementById("right"));
		mapaSolum.setCenter(new GLatLng(49.0275,19.5722), 10);
		mapaSolum.setMapType(G_PHYSICAL_MAP);

		mapaSolum.addControl(new GSmallMapControl());
		mapaSolum.addControl(new GMapTypeControl());

		var iconSolum = new GIcon();
		iconSolum.image = "./images/icon_Solum.png";
		iconSolum.iconAnchor = new GPoint(0,25);
		mapaSolum.addOverlay(new GMarker(new GLatLng(49.02773,19.57235),{icon:iconSolum}));

		var iconJasna = new GIcon();
		iconJasna.image = "./images/icon_Jasna.png";
		iconJasna.iconAnchor = new GPoint(0,25);
		mapaSolum.addOverlay(new GMarker(new GLatLng(48.95306,19.58934),{icon:iconJasna}));

		var iconTatralandia = new GIcon();
		iconTatralandia.image = "./images/icon_Tatralandia.png";
		iconTatralandia.iconAnchor = new GPoint(0,25);
		mapaSolum.addOverlay(new GMarker(new GLatLng(49.10621111,19.57035278),{icon:iconTatralandia}));
	}
}
