﻿
function formatTitle(title, currentArray, currentIndex, currentOpts) {
    return '<span id="fancybox-title-over">' + title + '</span>';
}

$(document).ready(function () {
    $(".gallery_pagine a").fancybox({
        'overlayOpacity': 0.6,
        'overlayColor': '#000',
        'titlePosition': 'over',
        'titleShow': true,
	    'titleFormat': formatTitle
    });
    $('.gallery_pagine ul').bxSlider({
        displaySlideQty: 1,
        moveSlideQty: 1,
        pager: true,
        controls: false
    });
    //$('.gallery_pagine ul').css('left','-248px');
});
