jQuery(document).ready(function($) {

    $('#daily-oracle a').click(function() {
        return false;
    })

    /** nastaveni pro fotogalerii */
    var setup = {
        overlayOpacity: 0.6,
        overlayColor: '#1F0B33',
        titlePosition: 'over',
        titleFormat: function(title, currentArray, currentIndex, currentOpts) {
            var $this = $(currentOpts.orig.context.parentNode);
            return '<span id="fancybox-title-over">' + $this.next().text() + ' (' + (currentIndex + 1) + '/' + currentArray.length + ')</span>';
        }
    }

    $(".imagedetail").fancybox({
        'titleShow': false,
        'transitionIn': 'none',
        'transitionOut': 'none'
    });


    /** fotogalerie pri zobrazenem clanku */
    $('.single .gallery-icon a').attr('rel', 'gallery').fancybox(setup);

    /** fotogalerie pri vypisu clanku */
    $('.list .gallery-icon a').fancybox(setup);

    /** fotografie vestce */    
    $('.magic-link-image').fancybox($.extend(setup, {
        titleFormat: function(title, currentArray, currentIndex, currentOpts) {
            var $this = $(currentOpts.orig.context);
            var $next = $this.next();

            return '<span id="fancybox-title-over">' + $next.html() + '</span>';
        }
    }));    
});


/* Nastavení aktuální stránky věštců */
function showmagicspage(idx) {    
    pnlMagics.PerformCallback(idx);
}
