// @author w.ciolko
$(document).ready(function(){

    $('a.powieksz').lightBox({
        imageLoading: '/images/lightbox-ico-loading.gif',
        imageBtnClose: '/images/lightbox-btn-close.gif',
        imageBtnPrev: '/images/lightbox-btn-prev.gif',
        imageBtnNext: '/images/lightbox-btn-next.gif',
        txtImage: 'Obraz',
        txtOf: 'z'
    });
    
    $.fn.addKreciolek = function(){
        this.ajaxStart(function(){
            $(this).css({
                opacity: 1,
                backgroundImage:"url(/images/progress.gif)",
                backgroundPosition: "center center",
                backgroundRepeat: "no-repeat"
            });
        });
        this.ajaxStop(function(){
            //$(this).unbind("ajaxStart");

            $(this).css({
                backgroundImage:"none"
            });
        });
    };

    $("#flashMessage").show("normal",
        function()
        {
            $("#flashMessage").fadeOut(10000);
        }
        );
});


