$(document).ready(function() {

        $(".fancybox").fancybox({
                'titleShow'                : false,
                'transitionIn'        : 'elastic',
                'transitionOut'        : 'elastic',
                'centerOnScroll': false
        });
        $("a[rel=fancybox_group]").fancybox({
                'centerOnScroll': false,
                'transitionIn'                : 'elastic',
                'transitionOut'                : 'elastic',
                'titleShow'                : false,
                'titleFormat'                : function(title, currentArray, currentIndex, currentOpts) {
                        return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
                }
        });
});

