﻿$(document).ready(function () {

    $("[rel=photo_gallery]").fancybox({
        'titleShow': true,
        'transitionIn': 'none',
        'transitionOut': 'elastic',
        'titlePosition': 'over',
        'titleFormat': function (title, currentArray, currentIndex, currentOpts) {
            return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
        },
        'thumbMinWidth': 100
    });

    $("[rel=video_gallery]").fancybox({
        'titleShow': true,
        'transitionIn': 'none',
        'transitionOut': 'elastic',
        'titlePosition': 'inside',
        'titleFormat': function (title, currentArray, currentIndex, currentOpts) {
            switch (currentOpts.type) {
                case 'swf':
                    return '<div id="fancybox-title-swf-wrapper"><div id="fancybox-title-swf">Video ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</div></div>';
                default:
                    return '<div id="fancybox-title-media-wrapper"><div id="fancybox-title-media">Video ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</div></div>';
            }
        },
        'width': 825,
        'height': 650,
        'type': 'multimedia',
        'swf': {
            'wmode': 'transparent',
            'allowfullscreen': true
        },
        'thumbMinWidth': 100,
    });
});

function ClosePopupContent() {
    $("#fancybox-close").trigger('click');
}
