$(document).ready(function() {
    $("a[href$='jpg']:has(img)").addClass('colorbox');
    $("a[href$='JPG']:has(img)").addClass('colorbox');
    $("a[href$='gif']:has(img)").addClass('colorbox');
    $("a[href$='GIF']:has(img)").addClass('colorbox');
    $("a.colorbox, area.colorbox").each(function () {
        if (!$(this).attr('rel')) $(this).attr('rel', 'colorbox');
        if (!$(this).attr('title')) $(this).attr('title', $('img', this).attr('title'));
        if (!$(this).attr('title')) $(this).attr('title', $('img', this).attr('alt'));
    });
    $("a.colorbox, area.colorbox").colorbox({
        contentCurrent : '{current} z {total}',
        contentPrevious : 'poprzedni',
        contentNext : 'nast\u0119pny',
        modalClose : 'zamknij',
        //overlayClose : true,
        transitionSpeed : 100,
        transition : 'elastic'
    });
    $('input[type=file]').change(function() {
        $('#'+$(this).attr('name')+'-txt').attr('value', $(this).attr('value'));
    });
    $('input.anuluj').click(function() {
        location.href = './';
    });
    $('.ui-tabs').tabs();
});
