﻿// settings fancybox 1.3.0
// language en
$(document).ready(function() {


    $("a[rel=photo-gallery]").fancybox({
        'titleShow': true,
        'transitionIn': 'none',
        'transitionOut': 'none',
        'titlePosition': 'outside',
        'titleFormat': function(title, currentArray, currentIndex, currentOpts) {
            return '<span id="fancybox-title-over" style="text-align:left;">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + '<br/>Desc: ' + title + '</span>';
        }
    });


});
