$(document).ready(function(){

    // tooltip - dymek
    tooltip();

    // lightbox - colorbox
    $("a[rel='lightbox']").colorbox({transition:"elastic"});
    $("a[rel='galeria']").colorbox({
    	transition:"elastic",
		slideshow: true,
		slideshowAuto: true,
		slideshowSpeed: 3000	
	});
    
});

function initialize(){
    if (GBrowserIsCompatible()) {
        var map = new GMap(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(52.403257, 20.332718), 9);

        var extLargeMapControl = new ExtLargeMapControl();
        map.addControl(extLargeMapControl);

        var opts = { text : "<strong>Złotopolska Dolina Pension&Restaurant</strong>"};

        var marker = new PopupMarker(new GLatLng(52.45172, 20.525379), opts);
        map.addOverlay(marker);
        marker.showPopup();

        
        GEvent.addListener(marker, "click", function(){
          marker.openInfoWindow("<strong>Złotopolska Dolina Pension&Restaurant</strong><br /><br />"
            + "Ekskluzywne Gospodarstwo Agroturystyczne<br /><br />"
            + " ul. Trębki Nowe 89<br />"
            + "05-170 Zakroczym<br /><br />"
            + "tel.: 48 601 691 399<br />"
            + "e-mail: info@zlotopolskadolina.pl<br />"
            + "internet: www.zlotopolskadolina.pl");
          marker.hidePopup();
    });
    }
}

