﻿function Init() {
    $(function () {
        $("#tabs").tabs({
            cache: true
        });
    });
}

function callImage(pageName) {
    $.ajax({
        url: '/FotoPages/' + pageName + '.htm',
        type: "GET",
        success: function (data) {
            $("#galleryview").empty().append(data);
            $("a[rel=example_group]").fancybox({
                'transitionIn': 'none',
                'transitionOut': 'none',
                'titlePosition': 'outside',
                'titleFormat': function (title, currentArray, currentIndex, currentOpts) {
                    return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
                }
            });
        },
        error: function (data) {
            alert("OPS!!! Si è verificato un errore.");
        }
    });
}
