$(function() {
    $('a[@rel*=lightbox],a.lightbox,a[@href~=jpg]').fancybox({
        frameWidth: 719,
        frameHeight: 719,
        'overlayShow': true
    });

    // blok informacyjny
    $('.info').each(function(k,e) {
        var item = $(e);
        item.addClass('tipbox').hide();
        $('<span/>').addClass("info").text('informacja').hover(function(){
             item.css({
                'top': $(this).offset().top - 10,
                'left': $(this).offset().left + 30
            }).show('slow');
        }, function() {
            item.css({
                'top': $(this).offset().top - 10,
                'left': $(this).offset().left + 30
            }).hide('slow');
        }).insertBefore(item);
    });
});
