$(function() {
    $('a[rel=lightbox]').lightBox({
        imageLoading: '/img/lightbox-ico-loading.gif',
        imageBtnClose: '/img/lightbox-btn-close.gif',
        imageBtnPrev: '/img/lightbox-btn-prev.gif',
        imageBtnNext: '/img/lightbox-btn-next.gif',
		imageBlank: '/img/lightbox-blank.gif',
        txtImage: 'Fotografie',
        txtOf: 'z'
    });

    $('.image-input-hidden').each(function() {
       var inputId = $(this).attr('id');
       $('dt#'+inputId+'-label').hide();
    });
    $('.image-input-hidden').parent().hide();
    $('p.description').html('<a href="#">Přidat další fotografii</a>');
    $('p.description a').click(function() {
        $('.image-input-hidden').each(function() {
           if($(this).parent().css('display') == 'none') {
             var inputId = $(this).attr('id');
             $(this).parent().show();
             $('dt#'+inputId+'-label').show();
             exit;
           }
        });
    });
});


