$(document).ready(function(){
    // Obsługa wyświetlania podstrony
    $('.imagesCont a').lightBox({fixedNavigation:true});

    // Lightbox w tekście odstrony
    $('.contentMain img').each(function(){
        if ( ! $(this).parent('a').hasClass('nolightbox')) {
            $(this).parent('a').lightBox({fixedNavigation:true})
        }
    });
});

