﻿$(document).ready(function() {
    $(".fancyBoxSingle").fancybox({
        'type': 'image',
        'titlePosition': 'inside',
        'transitionIn': 'none',
        'overlayOpacity': '0.3',
        'transitionOut': 'none',
        'autoScale': true,
        'autoDimensions': true,
        'titleFormat': function(title, currentArray, currentIndex, currentOpts) {
            if (this.href.search('&w=') > 0)
                return '<span>' + (title.length ? ' &nbsp; ' + title : '') + ' <a href="/gotoSite.aspx?id=' +
                        this.href.substr(this.href.search('&w=') + 3, this.href.length - this.href.search('&w=')) +
                        '&s=r" target="_blank">View Website</a></span>';
            else
                return '<span>' + (title.length ? ' &nbsp; ' + title : '') + '</span>';
        }

    });
    $(".fancyBoxGallery").fancybox({
        'type': 'image',
        'transitionIn': 'none',
        'transitionOut': 'none',
        'titlePosition': 'inside',
        'autoScale': true,
        'overlayOpacity': '0.3',
        'cyclic': 'true',
        'titleFormat': function(title, currentArray, currentIndex, currentOpts) {
            if (this.href.search('&w=') > 0)
                return '<span>Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') +
                    '  <a href="/gotoSite.aspx?id=' + this.href.substr(this.href.search('&w=') + 3, this.href.length - this.href.search('&w=')) + '&s=r" target="_blank">View Website</a></span>';
            else
                return '<span>Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
        }
    });
    $(".buttonPrint").fancybox({
    'autoDimensions': true,
    'width': 540,
    'height': 320,
    'transitionIn': 'none',
    'transitionOut': 'none',
    'titleShow': false,
    'type': 'iframe'
    });
    $("#enlargeLink").fancybox({
        'autoDimensions': true,
        'width': 540,
        'height': 340,
        'transitionIn': 'none',
        'transitionOut': 'none',
        'titleShow': false,
        'type': 'iframe'
    });

}); 
