function loadMap(elem) {
	if (GBrowserIsCompatible() && document.getElementById(elem) != null) {
		var map = new GMap2(document.getElementById(elem));
		map.addControl(new GLargeMapControl());
		map.enableScrollWheelZoom();
		return map;
	}
}

jQuery(document).ready(function() {
	var map = null;
	var msg = "";
	var point = null;
	if ($('#map1').length > 0) {
		map = loadMap("map1");
		point = new GLatLng(52.0331, 23.4742);
		msg = "Trade Trans Sp z o.o.<br />Wólka Dobryńska<br />PL 21-512 Zalesie";
	} else if ($('#map2').length > 0) {
		map = loadMap("map2");
		point = new GLatLng(52.201851, 20.384892);
		msg = "Rhenus Contract Logistics S.A<br />Oddział Teresin<br />al. XX-lecia 23a<br />PL 96-515 Teresin";
	} else if ($('#map3').length > 0) {
		map = loadMap("map3");
		point = new GLatLng(50.355505, 19.274756);
		msg = "Rhenus Contract Logistics S.A<br />PARK PROLOGIS<br />ul. Roździeńskiego 12<br />PL 41-303 Dąbrowa Górnicza";
	}

	if (map) {
		map.setCenter(point, 14);
		var marker = new GMarker(point)
		map.addOverlay(marker);
		marker.openInfoWindowHtml(msg);		
	}
})

