﻿$(document).ready(function () {
    $("a.eFotoGroup").fancybox({
        'transitionIn': 'fade',
        'transitionOut': 'none',
        'titlePosition': 'over',
        'hideOnContentClick': true,
        'centerOnScroll': true,
        'titleFormat': function (title, currentArray, currentIndex, currentOpts) {
            /*
            return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
            return '<span id="fancybox-title-over">Slika ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
            */
            return '<span id="fancybox-title-over"> ' + title + '</span>';
        }
    });
});

document.ondragstart = function () { return false; };

