$(document).ready(function(){

    var settings = {
        imageLoading: '/web-obrazy/lb_loading.gif',
        imageBtnClose: '/web-obrazy/lb_close.gif',
        imageBtnNext: '/web-obrazy/lb_next.gif',
        imageBtnPrev: '/web-obrazy/lb_prev.gif',
        txtImage: 'Obrázek',
        txtOf: 'z'
    }

    $('div.fotogal').each(function(){
        $(this).find('div.fotogal_img   > a').lightBox(settings);
        $(this).find('div.fotogal_nazev > a').lightBox(settings);
    });

    $('div.fotogalspec').each(function(){
        $(this).find('div.fotogalspec_img   > a, div.fotogalspec_wrapper > a').lightBox(settings);
        $(this).find('div.fotogalspec_nazev > a, div.fotogalspec_wrapper > a').lightBox(settings);
    });

});

