/**
 * @author Kopendrex
 */
$(document).ready(function(){
/* IFR */ 
$('.Realizacja a').lightBox({fixedNavigation:true});
$('.Oferta a').lightBox({fixedNavigation:true});
/* EOR */

});

function load() { 
var zoom=11; 
var point = new GLatLng(50.11645048921205, 22.232379913330078);  
var marker = new GMarker(point);

	if (GBrowserIsCompatible()) { 
	var mapa = new GMap2(document.getElementById("Mapa")); 
	GEvent.addListener(marker, "click", function() {
		alert("Maternowski parkiety");
		});

	mapa.addControl(new GSmallZoomControl());
	mapa.setCenter(new GLatLng(50.11645048921205, 22.232379913330078), zoom); 
	mapa.addOverlay(marker);
	}
}

function mailme(where) {
	document.location.href="MailTo:"+where+"maternowski.pl";
}

