function load()
{
	if (GBrowserIsCompatible())
	{
		var map = new GMap2(document.getElementById("mapa"));
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
		map.setCenter(new GLatLng(53.42490, 14.483), 12);
		//map.setCenter(new GLatLng(53.454416, 14.474467), 15);
		
		// Marker
		var icon = new GIcon();
		icon.image = "http://www.cargryf.pl/media/default/images/logo_male.gif";
		icon.iconSize = new GSize(59, 40);
		icon.shadowSize = new GSize(59, 45);
		icon.iconAnchor = new GPoint(59, 40);
		icon.infoWindowAnchor = new GPoint(59, 40);
		
		var point = new GLatLng(53.4190, 14.4190);
		var marker_stobno = new GMarker(point, icon)
		GEvent.addListener(marker_stobno, "click", function() {
			marker_stobno.openInfoWindowHtml("Artur Zych<br>Stobno 17d<br>72-002 Doluje");
		});
		map.addOverlay(marker_stobno);
	}
	
	/*Stobno
		N = 53°24'50'' = 53,4139° = 626257 m
		E = 14°25'58,4'' = 14,4329° = 196624 m
	*/
}

