 $(document).ready(function() {

    if ($(".gallery-item").length) {
        $(".gallery-item a").each(function(index) {
            $(this).addClass("fancyBox");
        });
    } // if
    
    $("a.fancyBox").fancybox({
        titlePosition: 'inside'
    });

});
