{ "version": 3, "sources": ["../../javascript/front.js"], "sourcesContent": ["$('.hamburger').on('click', function () {\n if ($('.navbar-fixed-left').css('right') == '-100px') {\n $('.navbar-fixed-left').animate({ right: '0px' }, 'slow');\n }\n else {\n if ($('.navbar-fixed-left').css('overflow-y') == 'scroll') {\n $('.navbar-fixed-left').animate({ right: '-100px' }, 'slow');\n }\n }\n});\n\n\n\n(function ($) {\n \"use strict\"; var App = function () { var o = this; $(document).ready(function () { o.initialize(); }); }; var p = App.prototype; App.SCREEN_XS = 480; App.SCREEN_SM = 768; App.SCREEN_MD = 992; App.SCREEN_LG = 1200; p._callFunctions = null; p._resizeTimer = null; p.initialize = function () { this._enableEvents(); this._initBreakpoints(); this._initInk(); this._initAccordion(); }; p._enableEvents = function () { var o = this; $(window).on('resize', function (e) { clearTimeout(o._resizeTimer); o._resizeTimer = setTimeout(function () { o._handleFunctionCalls(e); }, 300); }); }; p.getKnobStyle = function (knob) { var holder = knob.closest('.knob'); var options = { width: Math.floor(holder.outerWidth()), height: Math.floor(holder.outerHeight()), fgColor: holder.css('color'), bgColor: holder.css('border-top-color'), draw: function () { if (knob.data('percentage')) { $(this.i).val(this.cv + '%'); } } }; return options; }; p._initAccordion = function () { $('.panel-group .card .in').each(function () { var card = $(this).parent(); card.addClass('expanded'); }); $('.panel-group').on('hide.bs.collapse', function (e) { var content = $(e.target); var card = content.parent(); card.removeClass('expanded'); }); $('.panel-group').on('show.bs.collapse', function (e) { var content = $(e.target); var card = content.parent(); var group = card.closest('.panel-group'); group.find('.card.expanded').removeClass('expanded'); card.addClass('expanded'); }); }; p._initInk = function () { var o = this; $('.ink-reaction').on('click', function (e) { var bound = $(this).get(0).getBoundingClientRect(); var x = e.clientX - bound.left; var y = e.clientY - bound.top; var color = o.getBackground($(this)); var inverse = (o.getLuma(color) > 183) ? ' inverse' : ''; var ink = $('
'); var btnOffset = $(this).offset(); var xPos = e.pageX - btnOffset.left; var yPos = e.pageY - btnOffset.top; ink.css({ top: yPos, left: xPos }).appendTo($(this)); window.setTimeout(function () { ink.remove(); }, 1500); }); }; p.getBackground = function (item) {\n var color = item.css(\"background-color\"); var alpha = parseFloat(color.split(',')[3], 10); if ((isNaN(alpha) || alpha > 0.8) && color !== 'transparent') { return color; }\n if (item.is(\"body\")) { return false; } else { return this.getBackground(item.parent()); }\n }; p.getLuma = function (color) { var rgba = color.substring(4, color.length - 1).split(','); var r = rgba[0]; var g = rgba[1]; var b = rgba[2]; var luma = 0.2126 * r + 0.7152 * g + 0.0722 * b; return luma; }; p._initBreakpoints = function (alias) { var html = ''; html += '
'; html += '
'; html += '
'; html += '
'; html += '
'; html += '
'; $('body').append(html); }; p.isBreakpoint = function (alias) { return $('.device-' + alias).is(':visible'); }; p.minBreakpoint = function (alias) { var breakpoints = ['xs', 'sm', 'md', 'lg']; var breakpoint = $('#device-breakpoints div:visible').data('breakpoint'); return $.inArray(alias, breakpoints) < $.inArray(breakpoint, breakpoints); }; p.callOnResize = function (func) {\n if (this._callFunctions === null) { this._callFunctions = []; }\n this._callFunctions.push(func); func.call();\n }; p._handleFunctionCalls = function (e) {\n if (this._callFunctions === null) { return; }\n for (var i = 0; i < this._callFunctions.length; i++) { this._callFunctions[i].call(); }\n }; window.materialadmin = window.materialadmin || {}; window.materialadmin.App = new App;\n}(jQuery));\n(function (namespace, $) {\n \"use strict\"; var AppNavigation = function () { var o = this; $(document).ready(function () { o.initialize(); }); }; var p = AppNavigation.prototype; AppNavigation.MENU_MAXIMIZED = 1; AppNavigation.MENU_COLLAPSED = 2; AppNavigation.MENU_HIDDEN = 3; p._lastOpened = null; p.initialize = function () { this._enableEvents(); this._invalidateMenu(); this._evalMenuScrollbar(); }; p._enableEvents = function () { var o = this; $(window).on('resize', function (e) { o._handleScreenSize(e); }); $('[data-toggle=\"menubar\"]').on('click', function (e) { o._handleMenuToggleClick(e); }); $('[data-dismiss=\"menubar\"]').on('click', function (e) { o._handleMenubarLeave(); }); $('#main-menu').on('click', 'li', function (e) { o._handleMenuItemClick(e); }); $('#main-menu').on('click', 'a', function (e) { o._handleMenuLinkClick(e); }); $('body.menubar-hoverable').on('mouseenter', '#menubar', function (e) { setTimeout(function () { o._handleMenubarEnter(); }, 1); }); }; p._handleScreenSize = function (e) { this._invalidateMenu(); this._evalMenuScrollbar(e); }; p._handleMenuToggleClick = function (e) {\n if (!materialadmin.App.isBreakpoint('xs')) { $('body').toggleClass('menubar-pin'); }\n var state = this.getMenuState(); if (state === AppNavigation.MENU_COLLAPSED) { this._handleMenubarEnter(); }\n else if (state === AppNavigation.MENU_MAXIMIZED) { this._handleMenubarLeave(); }\n else if (state === AppNavigation.MENU_HIDDEN) { this._handleMenubarEnter(); }\n }; p._handleMenuItemClick = function (e) { e.stopPropagation(); var item = $(e.currentTarget); var submenu = item.find('> ul'); var parentmenu = item.closest('ul'); this._handleMenubarEnter(item); if (submenu.children().length !== 0) { this._closeSubMenu(parentmenu); var menuIsCollapsed = this.getMenuState() === AppNavigation.MENU_COLLAPSED; if (menuIsCollapsed || item.hasClass('expanded') === false) { this._openSubMenu(item); } } }; p._handleMenubarEnter = function (menuItem) {\n var o = this; var offcanvasVisible = $('body').hasClass('offcanvas-left-expanded'); var menubarExpanded = $('#menubar').data('expanded'); var menuItemClicked = (menuItem !== undefined); if ((menuItemClicked === true || offcanvasVisible === false) && menubarExpanded !== true) {\n $('#content').one('mouseover', function (e) { o._handleMenubarLeave(); }); $('body').addClass('menubar-visible'); $('#menubar').data('expanded', true); $('#menubar').triggerHandler('enter'); if (menuItemClicked === false) {\n if (this._lastOpened) { var o = this; this._openSubMenu(this._lastOpened, 0); this._lastOpened.parents('.gui-folder').each(function () { o._openSubMenu($(this), 0); }); }\n else { var item = $('#main-menu > li.active'); this._openSubMenu(item, 0); }\n }\n }\n }; p._handleMenubarLeave = function () {\n $('body').removeClass('menubar-visible'); if (materialadmin.App.minBreakpoint('md')) { if ($('body').hasClass('menubar-pin')) { return; } }\n $('#menubar').data('expanded', false); if (materialadmin.App.isBreakpoint('xs') === false) { this._closeSubMenu($('#main-menu')); }\n }; p._handleMenuLinkClick = function (e) { if (this.getMenuState() !== AppNavigation.MENU_MAXIMIZED) { e.preventDefault(); } }; p._closeSubMenu = function (menu) { var o = this; menu.find('> li > ul').stop().slideUp(170, function () { $(this).closest('li').removeClass('expanded'); o._evalMenuScrollbar(); }); }; p._openSubMenu = function (item, duration) {\n var o = this; if (typeof (duration) === 'undefined') { duration = 170; }\n this._lastOpened = item; item.addClass('expanding'); item.find('> ul').stop().slideDown(duration, function () { item.addClass('expanded'); item.removeClass('expanding'); o._evalMenuScrollbar(); $('#main-menu ul').removeAttr('style'); });\n }; p._invalidateMenu = function () {\n var selectedLink = $('#main-menu a.active'); selectedLink.parentsUntil($('#main-menu')).each(function () { if ($(this).is('li')) { $(this).addClass('active'); $(this).addClass('expanded'); } }); if (this.getMenuState() === AppNavigation.MENU_COLLAPSED) { $('#main-menu').find('> li').removeClass('expanded'); }\n if ($('body').hasClass('menubar-visible')) { this._handleMenubarEnter(); }\n $('#main-menu').triggerHandler('ready'); $('#menubar').addClass('animate');\n }; p.getMenuState = function () {\n var matrix = $('#menubar').css(\"transform\"); var values = (matrix) ? matrix.match(/-?[\\d\\.]+/g) : null; var menuState = AppNavigation.MENU_MAXIMIZED; if (values === null) {\n if ($('#menubar').width() <= 100) { menuState = AppNavigation.MENU_COLLAPSED; }\n else { menuState = AppNavigation.MENU_MAXIMIZED; }\n }\n else {\n if (values[4] === '0') { menuState = AppNavigation.MENU_MAXIMIZED; }\n else { menuState = AppNavigation.MENU_HIDDEN; }\n }\n return menuState;\n }; p._evalMenuScrollbar = function () {\n if (!$.isFunction($.fn.nanoScroller)) { return; }\n var footerHeight = $('#menubar .menubar-foot-panel').outerHeight(); footerHeight = Math.max(footerHeight, 1); $('.menubar-scroll-panel').css({ 'padding-bottom': footerHeight }); var menu = $('#menubar'); if (menu.length === 0)\n return; var menuScroller = $('.menubar-scroll-panel'); var parent = menuScroller.parent(); if (parent.hasClass('nano-content') === false) { menuScroller.wrap('
'); }\n var height = $(window).height() - menu.position().top - menu.find('.nano').position().top; var scroller = menuScroller.closest('.nano'); scroller.css({ height: height }); scroller.nanoScroller({ preventPageScrolling: true, iOSNativeScrolling: true });\n }; window.materialadmin.AppNavigation = new AppNavigation;\n}(this.materialadmin, jQuery));\n(function (namespace, $) {\n \"use strict\"; var AppOffcanvas = function () { var o = this; $(document).ready(function () { o.initialize(); }); }; var p = AppOffcanvas.prototype; p._timer = null; p._useBackdrop = null; p.initialize = function () { this._enableEvents(); }; p._enableEvents = function () { var o = this; $(window).on('resize', function (e) { o._handleScreenSize(e); }); $('.offcanvas').on('refresh', function (e) { o.evalScrollbar(e); }); $('[data-toggle=\"offcanvas\"]').on('click', function (e) { e.preventDefault(); o._handleOffcanvasOpen($(e.currentTarget)); }); $('[data-dismiss=\"offcanvas\"]').on('click', function (e) { o._handleOffcanvasClose(); }); $('#base').on('click', '> .backdrop', function (e) { o._handleOffcanvasClose(); }); $('[data-toggle=\"offcanvas-left\"].active').each(function () { o._handleOffcanvasOpen($(this)); }); $('[data-toggle=\"offcanvas-right\"].active').each(function () { o._handleOffcanvasOpen($(this)); }); }; p._handleScreenSize = function (e) { this.evalScrollbar(e); }; p._handleOffcanvasOpen = function (btn) {\n if (btn.hasClass('active')) { this._handleOffcanvasClose(); return; }\n var id = btn.attr('href'); this._useBackdrop = (btn.data('backdrop') === undefined) ? true : btn.data('backdrop'); this.openOffcanvas(id); this.invalidate();\n }; p._handleOffcanvasClose = function (e) { this.closeOffcanvas(); this.invalidate(); }; p.openOffcanvas = function (id) {\n this.closeOffcanvas(); $(id).addClass('active'); var leftOffcanvas = ($(id).closest('.offcanvas:first').length > 0); if (this._useBackdrop)\n $('body').addClass('offcanvas-expanded'); var width = $(id).width(); if (width > $(document).width()) { width = $(document).width() - 8; $(id + '.active').css({ 'width': width }); }\n width = (leftOffcanvas) ? width : '-' + width; var translate = 'translate(' + width + 'px, 0)'; $(id + '.active').css({ '-webkit-transform': translate, '-ms-transform': translate, '-o-transform': translate, 'transform': translate });\n }; p.closeOffcanvas = function () { $('[data-toggle=\"offcanvas\"]').removeClass('expanded'); $('.offcanvas-pane').removeClass('active'); $('.offcanvas-pane').css({ '-webkit-transform': '', '-ms-transform': '', '-o-transform': '', 'transform': '' }); }; p.toggleButtonState = function () { var id = $('.offcanvas-pane.active').attr('id'); $('[data-toggle=\"offcanvas\"]').removeClass('active'); $('[href=\"#' + id + '\"]').addClass('active'); }; p.toggleBackdropState = function () {\n if ($('.offcanvas-pane.active').length > 0 && this._useBackdrop) { this._addBackdrop(); }\n else { this._removeBackdrop(); }\n }; p._addBackdrop = function () { if ($('#base > .backdrop').length === 0 && $('#base').data('backdrop') !== 'hidden') { $('
').hide().appendTo('#base').fadeIn(); } }; p._removeBackdrop = function () { $('#base > .backdrop').fadeOut(function () { $(this).remove(); }); }; p.toggleBodyScrolling = function () {\n clearTimeout(this._timer); if ($('.offcanvas-pane.active').length > 0 && this._useBackdrop) { var scrollbarWidth = this.measureScrollbar(); var bodyPad = parseInt(($('body').css('padding-right') || 0), 10); if (scrollbarWidth !== bodyPad) { $('body').css('padding-right', bodyPad + scrollbarWidth); $('.headerbar').css('padding-right', bodyPad + scrollbarWidth); } }\n else { this._timer = setTimeout(function () { $('body').removeClass('offcanvas-expanded'); $('body').css('padding-right', ''); $('.headerbar').removeClass('offcanvas-expanded'); $('.headerbar').css('padding-right', ''); }, 330); }\n }; p.invalidate = function () { this.toggleButtonState(); this.toggleBackdropState(); this.toggleBodyScrolling(); this.evalScrollbar(); }; p.evalScrollbar = function () {\n if (!$.isFunction($.fn.nanoScroller)) { return; }\n var menu = $('.offcanvas-pane.active'); if (menu.length === 0)\n return; var menuScroller = $('.offcanvas-pane.active .offcanvas-body'); var parent = menuScroller.parent(); if (parent.hasClass('nano-content') === false) { menuScroller.wrap('
'); }\n var height = $(window).height() - menu.find('.nano').position().top; var scroller = menuScroller.closest('.nano'); scroller.css({ height: height }); scroller.nanoScroller({ preventPageScrolling: true });\n }; p.measureScrollbar = function () { var scrollDiv = document.createElement('div'); scrollDiv.className = 'modal-scrollbar-measure'; $('body').append(scrollDiv); var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth; $('body')[0].removeChild(scrollDiv); return scrollbarWidth; }; window.materialadmin.AppOffcanvas = new AppOffcanvas;\n}(this.materialadmin, jQuery));\n(function (namespace, $) { \"use strict\"; var AppCard = function () { var o = this; $(document).ready(function () { o.initialize(); }); }; var p = AppCard.prototype; p.initialize = function () { }; p.addCardLoader = function (card) { var container = $('
').appendTo(card); container.hide().fadeIn(); var opts = { lines: 17, length: 0, width: 3, radius: 6, corners: 1, rotate: 13, direction: 1, color: '#000', speed: 2, trail: 76, shadow: false, hwaccel: false, className: 'spinner', zIndex: 2e9 }; var spinner = new Spinner(opts).spin(container.get(0)); card.data('card-spinner', spinner); }; p.removeCardLoader = function (card) { var spinner = card.data('card-spinner'); var loader = card.find('.card-loader'); loader.fadeOut(function () { spinner.stop(); loader.remove(); }); }; p.toggleCardCollapse = function (card, duration) { duration = typeof duration !== 'undefined' ? duration : 400; var dispatched = false; card.find('.nano').slideToggle(duration); card.find('.card-body').slideToggle(duration, function () { if (dispatched === false) { $('#COLLAPSER').triggerHandler('card.bb.collapse', [!$(this).is(\":visible\")]); dispatched = true; } }); card.toggleClass('card-collapsed'); }; p.removeCard = function (card) { card.fadeOut(function () { card.remove(); }); }; window.materialadmin.AppCard = new AppCard; }(this.materialadmin, jQuery));\n(function (namespace, $) {\n \"use strict\"; var AppForm = function () { var o = this; $(document).ready(function () { o.initialize(); }); }; var p = AppForm.prototype; p.initialize = function () { this._enableEvents(); this._initRadioAndCheckbox(); this._initFloatingLabels(); this._initValidation(); }; p._enableEvents = function () { var o = this; $('[data-submit=\"form\"]').on('click', function (e) { e.preventDefault(); var formId = $(e.currentTarget).attr('href'); $(formId).submit(); }); $('textarea.autosize').on('focus', function () { $(this).autosize({ append: '' }); }); }; p._initRadioAndCheckbox = function () { $('.checkbox-styled input, .radio-styled input').each(function () { if ($(this).next('span').length === 0) { $(this).after(''); } }); }; p._initFloatingLabels = function () { var o = this; $('.floating-label .form-control').on('keyup change', function (e) { var input = $(e.currentTarget); if ($.trim(input.val()) !== '') { input.addClass('dirty').removeClass('static'); } else { input.removeClass('dirty').removeClass('static'); } }); $('.floating-label .form-control').each(function () { var input = $(this); if ($.trim(input.val()) !== '') { input.addClass('static').addClass('dirty'); } }); $('.form-horizontal .form-control').each(function () { $(this).after('
'); }); }; p._initValidation = function () {\n if (!$.isFunction($.fn.validate)) { return; }\n $.validator.setDefaults({\n highlight: function (element) { $(element).closest('.form-group').addClass('has-error'); }, unhighlight: function (element) { $(element).closest('.form-group').removeClass('has-error'); }, errorElement: 'span', errorClass: 'help-block', errorPlacement: function (error, element) {\n if (element.parent('.input-group').length) { error.insertAfter(element.parent()); }\n else if (element.parent('label').length) { error.insertAfter(element.parent()); }\n else { error.insertAfter(element); }\n }\n }); $('.form-validate').each(function () { var validator = $(this).validate(); $(this).data('validator', validator); });\n }; window.materialadmin.AppForm = new AppForm;\n}(this.materialadmin, jQuery));\n(function (namespace, $) {\n \"use strict\"; var AppNavSearch = function () { var o = this; $(document).ready(function () { o.initialize(); }); }; var p = AppNavSearch.prototype; p._clearSearchTimer = null; p.initialize = function () { this._enableEvents(); }; p._enableEvents = function () { var o = this; $('.navbar-search .btn').on('click', function (e) { o._handleButtonClick(e); }); $('.navbar-search input').on('blur', function (e) { o._handleFieldBlur(e); }); }; p._handleButtonClick = function (e) {\n e.preventDefault(); var form = $(e.currentTarget).closest('form'); var input = form.find('input'); var keyword = input.val(); if ($.trim(keyword) === '') { form.addClass('expanded'); input.focus(); }\n else { form.addClass('expanded'); form.submit(); clearTimeout(this._clearSearchTimer); }\n }; p._handleFieldBlur = function (e) { var input = $(e.currentTarget); var form = input.closest('form'); form.removeClass('expanded'); clearTimeout(this._clearSearchTimer); this._clearSearchTimer = setTimeout(function () { input.val(''); }, 300); }; window.materialadmin.AppNavSearch = new AppNavSearch;\n}(this.materialadmin, jQuery));\n(function (namespace, $) {\n \"use strict\"; var AppVendor = function () { var o = this; $(document).ready(function () { o.initialize(); }); }; var p = AppVendor.prototype; p.initialize = function () { this._initScroller(); this._initTabs(); this._initTooltips(); this._initPopover(); this._initSortables(); }; p._initScroller = function () {\n if (!$.isFunction($.fn.nanoScroller)) { return; }\n $.each($('.scroll'), function (e) { var holder = $(this); materialadmin.AppVendor.addScroller(holder); }); materialadmin.App.callOnResize(function () {\n $.each($('.scroll-xs'), function (e) {\n var holder = $(this); if (!holder.is(\":visible\")) return; if (materialadmin.App.minBreakpoint('xs')) { materialadmin.AppVendor.removeScroller(holder); }\n else { materialadmin.AppVendor.addScroller(holder); }\n }); $.each($('.scroll-sm'), function (e) {\n var holder = $(this); if (!holder.is(\":visible\")) return; if (materialadmin.App.minBreakpoint('sm')) { materialadmin.AppVendor.removeScroller(holder); }\n else { materialadmin.AppVendor.addScroller(holder); }\n }); $.each($('.scroll-md'), function (e) {\n var holder = $(this); if (!holder.is(\":visible\")) return; if (materialadmin.App.minBreakpoint('md')) { materialadmin.AppVendor.removeScroller(holder); }\n else { materialadmin.AppVendor.addScroller(holder); }\n }); $.each($('.scroll-lg'), function (e) {\n var holder = $(this); if (!holder.is(\":visible\")) return; if (materialadmin.App.minBreakpoint('lg')) { materialadmin.AppVendor.removeScroller(holder); }\n else { materialadmin.AppVendor.addScroller(holder); }\n });\n });\n }; p.addScroller = function (holder) { holder.wrap('
'); var scroller = holder.closest('.nano'); scroller.css({ height: holder.outerHeight() }); scroller.nanoScroller(); holder.css({ height: 'auto' }); }; p.removeScroller = function (holder) {\n if (holder.parent().parent().hasClass('nano') === false) { return; }\n holder.parent().parent().nanoScroller({ destroy: true }); holder.parent('.nano-content').replaceWith(holder); holder.parent('.nano').replaceWith(holder); holder.attr('style', '');\n }; p._initSortables = function () {\n if (!$.isFunction($.fn.sortable)) { return; }\n $('[data-sortable=\"true\"]').sortable({ placeholder: \"ui-state-highlight\", delay: 100, start: function (e, ui) { ui.placeholder.height(ui.item.outerHeight() - 1); } });\n }; p._initTabs = function () {\n if (!$.isFunction($.fn.tab)) { return; }\n $('[data-toggle=\"tabs\"] a').click(function (e) { e.preventDefault(); $(this).tab('show'); });\n }; p._initTooltips = function () {\n if (!$.isFunction($.fn.tooltip)) { return; }\n $('[data-toggle=\"tooltip\"]').tooltip({ container: 'body' });\n }; p._initPopover = function () {\n if (!$.isFunction($.fn.popover)) { return; }\n $('[data-toggle=\"popover\"]').popover({ container: 'body' });\n }; window.materialadmin.AppVendor = new AppVendor;\n}(this.materialadmin, jQuery));\n\n/*!\n * fancyBox - jQuery Plugin\n * version: 2.1.5 (Fri, 14 Jun 2013)\n * @requires jQuery v1.6 or later\n *\n * Examples at http://fancyapps.com/fancybox/\n * License: www.fancyapps.com/fancybox/#license\n *\n * Copyright 2012 Janis Skarnelis - janis@fancyapps.com\n *\n */\n\n(function (window, document, $, undefined) {\n \"use strict\";\n\n var H = $(\"html\"),\n\t\tW = $(window),\n\t\tD = $(document),\n\t\tF = $.fancybox = function () {\n\t\t F.open.apply(this, arguments);\n\t\t},\n\t\tIE = navigator.userAgent.match(/msie/i),\n\t\tdidUpdate = null,\n\t\tisTouch = document.createTouch !== undefined,\n\n\t\tisQuery = function (obj) {\n\t\t return obj && obj.hasOwnProperty && obj instanceof $;\n\t\t},\n\t\tisString = function (str) {\n\t\t return str && $.type(str) === \"string\";\n\t\t},\n\t\tisPercentage = function (str) {\n\t\t return isString(str) && str.indexOf('%') > 0;\n\t\t},\n\t\tisScrollable = function (el) {\n\t\t return (el && !(el.style.overflow && el.style.overflow === 'hidden') && ((el.clientWidth && el.scrollWidth > el.clientWidth) || (el.clientHeight && el.scrollHeight > el.clientHeight)));\n\t\t},\n\t\tgetScalar = function (orig, dim) {\n\t\t var value = parseInt(orig, 10) || 0;\n\n\t\t if (dim && isPercentage(orig)) {\n\t\t value = F.getViewport()[dim] / 100 * value;\n\t\t }\n\n\t\t return Math.ceil(value);\n\t\t},\n\t\tgetValue = function (value, dim) {\n\t\t return getScalar(value, dim) + 'px';\n\t\t};\n\n $.extend(F, {\n // The current version of fancyBox\n version: '2.1.5',\n\n defaults: {\n padding: 0,\n margin: 20,\n\n width: 800,\n height: 600,\n minWidth: 100,\n minHeight: 100,\n maxWidth: 9999,\n maxHeight: 9999,\n pixelRatio: 1, // Set to 2 for retina display support\n\n autoSize: true,\n autoHeight: false,\n autoWidth: false,\n\n autoResize: true,\n autoCenter: !isTouch,\n fitToView: true,\n aspectRatio: false,\n topRatio: 0.5,\n leftRatio: 0.5,\n\n scrolling: 'auto', // 'auto', 'yes' or 'no'\n wrapCSS: '',\n\n arrows: true,\n closeBtn: true,\n closeClick: false,\n nextClick: false,\n mouseWheel: true,\n autoPlay: false,\n playSpeed: 3000,\n preload: 3,\n modal: false,\n loop: true,\n\n ajax: {\n dataType: 'html',\n headers: { 'X-fancyBox': true }\n },\n iframe: {\n scrolling: 'auto',\n preload: true\n },\n swf: {\n wmode: 'transparent',\n allowfullscreen: 'true',\n allowscriptaccess: 'always'\n },\n\n keys: {\n next: {\n 13: 'left', // enter\n 34: 'up', // page down\n 39: 'left', // right arrow\n 40: 'up' // down arrow\n },\n prev: {\n 8: 'right', // backspace\n 33: 'down', // page up\n 37: 'right', // left arrow\n 38: 'down' // up arrow\n },\n close: [27], // escape key\n play: [32], // space - start/stop slideshow\n toggle: [70] // letter \"f\" - toggle fullscreen\n },\n\n direction: {\n next: 'left',\n prev: 'right'\n },\n\n scrollOutside: true,\n\n // Override some properties\n index: 0,\n type: null,\n href: null,\n content: null,\n title: null,\n\n // HTML templates\n tpl: {\n wrap: '
',\n image: '\"\"',\n iframe: '',\n error: '

The requested content cannot be loaded.
Please try again later.

',\n closeBtn: '',\n next: '',\n prev: ''\n },\n\n // Properties for each animation type\n // Opening fancyBox\n openEffect: 'fade', // 'elastic', 'fade' or 'none'\n openSpeed: 250,\n openEasing: 'swing',\n openOpacity: true,\n openMethod: 'zoomIn',\n\n // Closing fancyBox\n closeEffect: 'fade', // 'elastic', 'fade' or 'none'\n closeSpeed: 250,\n closeEasing: 'swing',\n closeOpacity: true,\n closeMethod: 'zoomOut',\n\n // Changing next gallery item\n nextEffect: 'elastic', // 'elastic', 'fade' or 'none'\n nextSpeed: 250,\n nextEasing: 'swing',\n nextMethod: 'changeIn',\n\n // Changing previous gallery item\n prevEffect: 'elastic', // 'elastic', 'fade' or 'none'\n prevSpeed: 250,\n prevEasing: 'swing',\n prevMethod: 'changeOut',\n\n // Enable default helpers\n helpers: {\n overlay: true,\n title: true\n },\n\n // Callbacks\n onCancel: $.noop, // If canceling\n beforeLoad: $.noop, // Before loading\n afterLoad: $.noop, // After loading\n beforeShow: $.noop, // Before changing in current item\n afterShow: $.noop, // After opening\n beforeChange: $.noop, // Before changing gallery item\n beforeClose: $.noop, // Before closing\n afterClose: $.noop // After closing\n },\n\n //Current state\n group: {}, // Selected group\n opts: {}, // Group options\n previous: null, // Previous element\n coming: null, // Element being loaded\n current: null, // Currently loaded element\n isActive: false, // Is activated\n isOpen: false, // Is currently open\n isOpened: false, // Have been fully opened at least once\n\n wrap: null,\n skin: null,\n outer: null,\n inner: null,\n\n player: {\n timer: null,\n isActive: false\n },\n\n // Loaders\n ajaxLoad: null,\n imgPreload: null,\n\n // Some collections\n transitions: {},\n helpers: {},\n\n /*\n\t\t *\tStatic methods\n\t\t */\n\n open: function (group, opts) {\n if (!group) {\n return;\n }\n\n if (!$.isPlainObject(opts)) {\n opts = {};\n }\n\n // Close if already active\n if (false === F.close(true)) {\n return;\n }\n\n // Normalize group\n if (!$.isArray(group)) {\n group = isQuery(group) ? $(group).get() : [group];\n }\n\n // Recheck if the type of each element is `object` and set content type (image, ajax, etc)\n $.each(group, function (i, element) {\n var obj = {},\n\t\t\t\t\thref,\n\t\t\t\t\ttitle,\n\t\t\t\t\tcontent,\n\t\t\t\t\ttype,\n\t\t\t\t\trez,\n\t\t\t\t\threfParts,\n\t\t\t\t\tselector;\n\n if ($.type(element) === \"object\") {\n // Check if is DOM element\n if (element.nodeType) {\n element = $(element);\n }\n\n if (isQuery(element)) {\n obj = {\n href: element.data('fancybox-href') || element.attr('href'),\n title: element.data('fancybox-title') || element.attr('title'),\n isDom: true,\n element: element\n };\n\n if ($.metadata) {\n $.extend(true, obj, element.metadata());\n }\n\n } else {\n obj = element;\n }\n }\n\n href = opts.href || obj.href || (isString(element) ? element : null);\n title = opts.title !== undefined ? opts.title : obj.title || '';\n\n content = opts.content || obj.content;\n type = content ? 'html' : (opts.type || obj.type);\n\n if (!type && obj.isDom) {\n type = element.data('fancybox-type');\n\n if (!type) {\n rez = element.prop('class').match(/fancybox\\.(\\w+)/);\n type = rez ? rez[1] : null;\n }\n }\n\n if (isString(href)) {\n // Try to guess the content type\n if (!type) {\n if (F.isImage(href)) {\n type = 'image';\n\n } else if (F.isSWF(href)) {\n type = 'swf';\n\n } else if (href.charAt(0) === '#') {\n type = 'inline';\n\n } else if (isString(element)) {\n type = 'html';\n content = element;\n }\n }\n\n // Split url into two pieces with source url and content selector, e.g,\n // \"/mypage.html #my_id\" will load \"/mypage.html\" and display element having id \"my_id\"\n if (type === 'ajax') {\n hrefParts = href.split(/\\s+/, 2);\n href = hrefParts.shift();\n selector = hrefParts.shift();\n }\n }\n\n if (!content) {\n if (type === 'inline') {\n if (href) {\n content = $(isString(href) ? href.replace(/.*(?=#[^\\s]+$)/, '') : href); //strip for ie7\n\n } else if (obj.isDom) {\n content = element;\n }\n\n } else if (type === 'html') {\n content = href;\n\n } else if (!type && !href && obj.isDom) {\n type = 'inline';\n content = element;\n }\n }\n\n $.extend(obj, {\n href: href,\n type: type,\n content: content,\n title: title,\n selector: selector\n });\n\n group[i] = obj;\n });\n\n // Extend the defaults\n F.opts = $.extend(true, {}, F.defaults, opts);\n\n // All options are merged recursive except keys\n if (opts.keys !== undefined) {\n F.opts.keys = opts.keys ? $.extend({}, F.defaults.keys, opts.keys) : false;\n }\n\n F.group = group;\n\n return F._start(F.opts.index);\n },\n\n // Cancel image loading or abort ajax request\n cancel: function () {\n var coming = F.coming;\n\n if (!coming || false === F.trigger('onCancel')) {\n return;\n }\n\n F.hideLoading();\n\n if (F.ajaxLoad) {\n F.ajaxLoad.abort();\n }\n\n F.ajaxLoad = null;\n\n if (F.imgPreload) {\n F.imgPreload.onload = F.imgPreload.onerror = null;\n }\n\n if (coming.wrap) {\n coming.wrap.stop(true, true).trigger('onReset').remove();\n }\n\n F.coming = null;\n\n // If the first item has been canceled, then clear everything\n if (!F.current) {\n F._afterZoomOut(coming);\n }\n },\n\n // Start closing animation if is open; remove immediately if opening/closing\n close: function (event) {\n F.cancel();\n\n if (false === F.trigger('beforeClose')) {\n return;\n }\n\n F.unbindEvents();\n\n if (!F.isActive) {\n return;\n }\n\n if (!F.isOpen || event === true) {\n $('.fancybox-wrap').stop(true).trigger('onReset').remove();\n\n F._afterZoomOut();\n\n } else {\n F.isOpen = F.isOpened = false;\n F.isClosing = true;\n\n $('.fancybox-item, .fancybox-nav').remove();\n\n F.wrap.stop(true, true).removeClass('fancybox-opened');\n\n F.transitions[F.current.closeMethod]();\n }\n },\n\n // Manage slideshow:\n // $.fancybox.play(); - toggle slideshow\n // $.fancybox.play( true ); - start\n // $.fancybox.play( false ); - stop\n play: function (action) {\n var clear = function () {\n clearTimeout(F.player.timer);\n },\n\t\t\t\tset = function () {\n\t\t\t\t clear();\n\n\t\t\t\t if (F.current && F.player.isActive) {\n\t\t\t\t F.player.timer = setTimeout(F.next, F.current.playSpeed);\n\t\t\t\t }\n\t\t\t\t},\n\t\t\t\tstop = function () {\n\t\t\t\t clear();\n\n\t\t\t\t D.unbind('.player');\n\n\t\t\t\t F.player.isActive = false;\n\n\t\t\t\t F.trigger('onPlayEnd');\n\t\t\t\t},\n\t\t\t\tstart = function () {\n\t\t\t\t if (F.current && (F.current.loop || F.current.index < F.group.length - 1)) {\n\t\t\t\t F.player.isActive = true;\n\n\t\t\t\t D.bind({\n\t\t\t\t 'onCancel.player beforeClose.player': stop,\n\t\t\t\t 'onUpdate.player': set,\n\t\t\t\t 'beforeLoad.player': clear\n\t\t\t\t });\n\n\t\t\t\t set();\n\n\t\t\t\t F.trigger('onPlayStart');\n\t\t\t\t }\n\t\t\t\t};\n\n if (action === true || (!F.player.isActive && action !== false)) {\n start();\n } else {\n stop();\n }\n },\n\n // Navigate to next gallery item\n next: function (direction) {\n var current = F.current;\n\n if (current) {\n if (!isString(direction)) {\n direction = current.direction.next;\n }\n\n F.jumpto(current.index + 1, direction, 'next');\n }\n },\n\n // Navigate to previous gallery item\n prev: function (direction) {\n var current = F.current;\n\n if (current) {\n if (!isString(direction)) {\n direction = current.direction.prev;\n }\n\n F.jumpto(current.index - 1, direction, 'prev');\n }\n },\n\n // Navigate to gallery item by index\n jumpto: function (index, direction, router) {\n var current = F.current;\n\n if (!current) {\n return;\n }\n\n index = getScalar(index);\n\n F.direction = direction || current.direction[(index >= current.index ? 'next' : 'prev')];\n F.router = router || 'jumpto';\n\n if (current.loop) {\n if (index < 0) {\n index = current.group.length + (index % current.group.length);\n }\n\n index = index % current.group.length;\n }\n\n if (current.group[index] !== undefined) {\n F.cancel();\n\n F._start(index);\n }\n },\n\n // Center inside viewport and toggle position type to fixed or absolute if needed\n reposition: function (e, onlyAbsolute) {\n var current = F.current,\n\t\t\t\twrap = current ? current.wrap : null,\n\t\t\t\tpos;\n\n if (wrap) {\n pos = F._getPosition(onlyAbsolute);\n\n if (e && e.type === 'scroll') {\n delete pos.position;\n\n wrap.stop(true, true).animate(pos, 200);\n\n } else {\n wrap.css(pos);\n\n current.pos = $.extend({}, current.dim, pos);\n }\n }\n },\n\n update: function (e) {\n var type = (e && e.type),\n\t\t\t\tanyway = !type || type === 'orientationchange';\n\n if (anyway) {\n clearTimeout(didUpdate);\n\n didUpdate = null;\n }\n\n if (!F.isOpen || didUpdate) {\n return;\n }\n\n didUpdate = setTimeout(function () {\n var current = F.current;\n\n if (!current || F.isClosing) {\n return;\n }\n\n F.wrap.removeClass('fancybox-tmp');\n\n if (anyway || type === 'load' || (type === 'resize' && current.autoResize)) {\n F._setDimension();\n }\n\n if (!(type === 'scroll' && current.canShrink)) {\n F.reposition(e);\n }\n\n F.trigger('onUpdate');\n\n didUpdate = null;\n\n }, (anyway && !isTouch ? 0 : 300));\n },\n\n // Shrink content to fit inside viewport or restore if resized\n toggle: function (action) {\n if (F.isOpen) {\n F.current.fitToView = $.type(action) === \"boolean\" ? action : !F.current.fitToView;\n\n // Help browser to restore document dimensions\n if (isTouch) {\n F.wrap.removeAttr('style').addClass('fancybox-tmp');\n\n F.trigger('onUpdate');\n }\n\n F.update();\n }\n },\n\n hideLoading: function () {\n D.unbind('.loading');\n\n $('#fancybox-loading').remove();\n },\n\n showLoading: function () {\n var el, viewport;\n\n F.hideLoading();\n\n el = $('
').click(F.cancel).appendTo('body');\n\n // If user will press the escape-button, the request will be canceled\n D.bind('keydown.loading', function (e) {\n if ((e.which || e.keyCode) === 27) {\n e.preventDefault();\n\n F.cancel();\n }\n });\n\n if (!F.defaults.fixed) {\n viewport = F.getViewport();\n\n el.css({\n position: 'absolute',\n top: (viewport.h * 0.5) + viewport.y,\n left: (viewport.w * 0.5) + viewport.x\n });\n }\n },\n\n getViewport: function () {\n var locked = (F.current && F.current.locked) || false,\n\t\t\t\trez = {\n\t\t\t\t x: W.scrollLeft(),\n\t\t\t\t y: W.scrollTop()\n\t\t\t\t};\n\n if (locked) {\n rez.w = locked[0].clientWidth;\n rez.h = locked[0].clientHeight;\n\n } else {\n // See http://bugs.jquery.com/ticket/6724\n rez.w = isTouch && window.innerWidth ? window.innerWidth : W.width();\n rez.h = isTouch && window.innerHeight ? window.innerHeight : W.height();\n }\n\n return rez;\n },\n\n // Unbind the keyboard / clicking actions\n unbindEvents: function () {\n if (F.wrap && isQuery(F.wrap)) {\n F.wrap.unbind('.fb');\n }\n\n D.unbind('.fb');\n W.unbind('.fb');\n },\n\n bindEvents: function () {\n var current = F.current,\n\t\t\t\tkeys;\n\n if (!current) {\n return;\n }\n\n // Changing document height on iOS devices triggers a 'resize' event,\n // that can change document height... repeating infinitely\n W.bind('orientationchange.fb' + (isTouch ? '' : ' resize.fb') + (current.autoCenter && !current.locked ? ' scroll.fb' : ''), F.update);\n\n keys = current.keys;\n\n if (keys) {\n D.bind('keydown.fb', function (e) {\n var code = e.which || e.keyCode,\n\t\t\t\t\t\ttarget = e.target || e.srcElement;\n\n // Skip esc key if loading, because showLoading will cancel preloading\n if (code === 27 && F.coming) {\n return false;\n }\n\n // Ignore key combinations and key events within form elements\n if (!e.ctrlKey && !e.altKey && !e.shiftKey && !e.metaKey && !(target && (target.type || $(target).is('[contenteditable]')))) {\n $.each(keys, function (i, val) {\n if (current.group.length > 1 && val[code] !== undefined) {\n F[i](val[code]);\n\n e.preventDefault();\n return false;\n }\n\n if ($.inArray(code, val) > -1) {\n F[i]();\n\n e.preventDefault();\n return false;\n }\n });\n }\n });\n }\n\n if ($.fn.mousewheel && current.mouseWheel) {\n F.wrap.bind('mousewheel.fb', function (e, delta, deltaX, deltaY) {\n var target = e.target || null,\n\t\t\t\t\t\tparent = $(target),\n\t\t\t\t\t\tcanScroll = false;\n\n while (parent.length) {\n if (canScroll || parent.is('.fancybox-skin') || parent.is('.fancybox-wrap')) {\n break;\n }\n\n canScroll = isScrollable(parent[0]);\n parent = $(parent).parent();\n }\n\n if (delta !== 0 && !canScroll) {\n if (F.group.length > 1 && !current.canShrink) {\n if (deltaY > 0 || deltaX > 0) {\n F.prev(deltaY > 0 ? 'down' : 'left');\n\n } else if (deltaY < 0 || deltaX < 0) {\n F.next(deltaY < 0 ? 'up' : 'right');\n }\n\n e.preventDefault();\n }\n }\n });\n }\n },\n\n trigger: function (event, o) {\n var ret, obj = o || F.coming || F.current;\n\n if (!obj) {\n return;\n }\n\n if ($.isFunction(obj[event])) {\n ret = obj[event].apply(obj, Array.prototype.slice.call(arguments, 1));\n }\n\n if (ret === false) {\n return false;\n }\n\n if (obj.helpers) {\n $.each(obj.helpers, function (helper, opts) {\n if (opts && F.helpers[helper] && $.isFunction(F.helpers[helper][event])) {\n F.helpers[helper][event]($.extend(true, {}, F.helpers[helper].defaults, opts), obj);\n }\n });\n }\n\n D.trigger(event);\n },\n\n isImage: function (str) {\n return isString(str) && str.match(/(^data:image\\/.*,)|(\\.(jp(e|g|eg)|gif|png|bmp|webp|svg)((\\?|#).*)?$)/i);\n },\n\n isSWF: function (str) {\n return isString(str) && str.match(/\\.(swf)((\\?|#).*)?$/i);\n },\n\n _start: function (index) {\n var coming = {},\n\t\t\t\tobj,\n\t\t\t\thref,\n\t\t\t\ttype,\n\t\t\t\tmargin,\n\t\t\t\tpadding;\n\n index = getScalar(index);\n obj = F.group[index] || null;\n\n if (!obj) {\n return false;\n }\n\n coming = $.extend(true, {}, F.opts, obj);\n\n // Convert margin and padding properties to array - top, right, bottom, left\n margin = coming.margin;\n padding = coming.padding;\n\n if ($.type(margin) === 'number') {\n coming.margin = [margin, margin, margin, margin];\n }\n\n if ($.type(padding) === 'number') {\n coming.padding = [padding, padding, padding, padding];\n }\n\n // 'modal' propery is just a shortcut\n if (coming.modal) {\n $.extend(true, coming, {\n closeBtn: false,\n closeClick: false,\n nextClick: false,\n arrows: false,\n mouseWheel: false,\n keys: null,\n helpers: {\n overlay: {\n closeClick: false\n }\n }\n });\n }\n\n // 'autoSize' property is a shortcut, too\n if (coming.autoSize) {\n coming.autoWidth = coming.autoHeight = true;\n }\n\n if (coming.width === 'auto') {\n coming.autoWidth = true;\n }\n\n if (coming.height === 'auto') {\n coming.autoHeight = true;\n }\n\n /*\n\t\t\t * Add reference to the group, so it`s possible to access from callbacks, example:\n\t\t\t * afterLoad : function() {\n\t\t\t * this.title = 'Image ' + (this.index + 1) + ' of ' + this.group.length + (this.title ? ' - ' + this.title : '');\n\t\t\t * }\n\t\t\t */\n\n coming.group = F.group;\n coming.index = index;\n\n // Give a chance for callback or helpers to update coming item (type, title, etc)\n F.coming = coming;\n\n if (false === F.trigger('beforeLoad')) {\n F.coming = null;\n\n return;\n }\n\n type = coming.type;\n href = coming.href;\n\n if (!type) {\n F.coming = null;\n\n //If we can not determine content type then drop silently or display next/prev item if looping through gallery\n if (F.current && F.router && F.router !== 'jumpto') {\n F.current.index = index;\n\n return F[F.router](F.direction);\n }\n\n return false;\n }\n\n F.isActive = true;\n\n if (type === 'image' || type === 'swf') {\n coming.autoHeight = coming.autoWidth = false;\n coming.scrolling = 'visible';\n }\n\n if (type === 'image') {\n coming.aspectRatio = true;\n }\n\n if (type === 'iframe' && isTouch) {\n coming.scrolling = 'scroll';\n }\n\n // Build the neccessary markup\n coming.wrap = $(coming.tpl.wrap).addClass('fancybox-' + (isTouch ? 'mobile' : 'desktop') + ' fancybox-type-' + type + ' fancybox-tmp ' + coming.wrapCSS).appendTo(coming.parent || 'body');\n\n $.extend(coming, {\n skin: $('.fancybox-skin', coming.wrap),\n outer: $('.fancybox-outer', coming.wrap),\n inner: $('.fancybox-inner', coming.wrap)\n });\n\n $.each([\"Top\", \"Right\", \"Bottom\", \"Left\"], function (i, v) {\n coming.skin.css('padding' + v, getValue(coming.padding[i]));\n });\n\n F.trigger('onReady');\n\n // Check before try to load; 'inline' and 'html' types need content, others - href\n if (type === 'inline' || type === 'html') {\n if (!coming.content || !coming.content.length) {\n return F._error('content');\n }\n\n } else if (!href) {\n return F._error('href');\n }\n\n if (type === 'image') {\n F._loadImage();\n\n } else if (type === 'ajax') {\n F._loadAjax();\n\n } else if (type === 'iframe') {\n F._loadIframe();\n\n } else {\n F._afterLoad();\n }\n },\n\n _error: function (type) {\n $.extend(F.coming, {\n type: 'html',\n autoWidth: true,\n autoHeight: true,\n minWidth: 0,\n minHeight: 0,\n scrolling: 'no',\n hasError: type,\n content: F.coming.tpl.error\n });\n\n F._afterLoad();\n },\n\n _loadImage: function () {\n // Reset preload image so it is later possible to check \"complete\" property\n var img = F.imgPreload = new Image();\n\n img.onload = function () {\n this.onload = this.onerror = null;\n\n F.coming.width = this.width / F.opts.pixelRatio;\n F.coming.height = this.height / F.opts.pixelRatio;\n\n F._afterLoad();\n };\n\n img.onerror = function () {\n this.onload = this.onerror = null;\n\n F._error('image');\n };\n\n img.src = F.coming.href;\n\n if (img.complete !== true) {\n F.showLoading();\n }\n },\n\n _loadAjax: function () {\n var coming = F.coming;\n\n F.showLoading();\n\n F.ajaxLoad = $.ajax($.extend({}, coming.ajax, {\n url: coming.href,\n error: function (jqXHR, textStatus) {\n if (F.coming && textStatus !== 'abort') {\n F._error('ajax', jqXHR);\n\n } else {\n F.hideLoading();\n }\n },\n success: function (data, textStatus) {\n if (textStatus === 'success') {\n coming.content = data;\n\n F._afterLoad();\n }\n }\n }));\n },\n\n _loadIframe: function () {\n var coming = F.coming,\n\t\t\t\tiframe = $(coming.tpl.iframe.replace(/\\{rnd\\}/g, new Date().getTime()))\n\t\t\t\t\t.attr('scrolling', isTouch ? 'auto' : coming.iframe.scrolling)\n\t\t\t\t\t.attr('src', coming.href);\n\n // This helps IE\n $(coming.wrap).bind('onReset', function () {\n try {\n $(this).find('iframe').hide().attr('src', '//about:blank').end().empty();\n } catch (e) { }\n });\n\n if (coming.iframe.preload) {\n F.showLoading();\n\n iframe.one('load', function () {\n $(this).data('ready', 1);\n\n // iOS will lose scrolling if we resize\n if (!isTouch) {\n $(this).bind('load.fb', F.update);\n }\n\n // Without this trick:\n // - iframe won't scroll on iOS devices\n // - IE7 sometimes displays empty iframe\n $(this).parents('.fancybox-wrap').width('100%').removeClass('fancybox-tmp').show();\n\n F._afterLoad();\n });\n }\n\n coming.content = iframe.appendTo(coming.inner);\n\n if (!coming.iframe.preload) {\n F._afterLoad();\n }\n },\n\n _preloadImages: function () {\n var group = F.group,\n\t\t\t\tcurrent = F.current,\n\t\t\t\tlen = group.length,\n\t\t\t\tcnt = current.preload ? Math.min(current.preload, len - 1) : 0,\n\t\t\t\titem,\n\t\t\t\ti;\n\n for (i = 1; i <= cnt; i += 1) {\n item = group[(current.index + i) % len];\n\n if (item.type === 'image' && item.href) {\n new Image().src = item.href;\n }\n }\n },\n\n _afterLoad: function () {\n var coming = F.coming,\n\t\t\t\tprevious = F.current,\n\t\t\t\tplaceholder = 'fancybox-placeholder',\n\t\t\t\tcurrent,\n\t\t\t\tcontent,\n\t\t\t\ttype,\n\t\t\t\tscrolling,\n\t\t\t\thref,\n\t\t\t\tembed;\n\n F.hideLoading();\n\n if (!coming || F.isActive === false) {\n return;\n }\n\n if (false === F.trigger('afterLoad', coming, previous)) {\n coming.wrap.stop(true).trigger('onReset').remove();\n\n F.coming = null;\n\n return;\n }\n\n if (previous) {\n F.trigger('beforeChange', previous);\n\n previous.wrap.stop(true).removeClass('fancybox-opened')\n\t\t\t\t\t.find('.fancybox-item, .fancybox-nav')\n\t\t\t\t\t.remove();\n }\n\n F.unbindEvents();\n\n current = coming;\n content = coming.content;\n type = coming.type;\n scrolling = coming.scrolling;\n\n $.extend(F, {\n wrap: current.wrap,\n skin: current.skin,\n outer: current.outer,\n inner: current.inner,\n current: current,\n previous: previous\n });\n\n href = current.href;\n\n switch (type) {\n case 'inline':\n case 'ajax':\n case 'html':\n if (current.selector) {\n content = $('
').html(content).find(current.selector);\n\n } else if (isQuery(content)) {\n if (!content.data(placeholder)) {\n content.data(placeholder, $('
').insertAfter(content).hide());\n }\n\n content = content.show().detach();\n\n current.wrap.bind('onReset', function () {\n if ($(this).find(content).length) {\n content.hide().replaceAll(content.data(placeholder)).data(placeholder, false);\n }\n });\n }\n break;\n\n case 'image':\n content = current.tpl.image.replace('{href}', href);\n break;\n\n case 'swf':\n content = '';\n embed = '';\n\n $.each(current.swf, function (name, val) {\n content += '';\n embed += ' ' + name + '=\"' + val + '\"';\n });\n\n content += '';\n break;\n }\n\n if (!(isQuery(content) && content.parent().is(current.inner))) {\n current.inner.append(content);\n }\n\n // Give a chance for helpers or callbacks to update elements\n F.trigger('beforeShow');\n\n // Set scrolling before calculating dimensions\n current.inner.css('overflow', scrolling === 'yes' ? 'scroll' : (scrolling === 'no' ? 'hidden' : scrolling));\n\n // Set initial dimensions and start position\n F._setDimension();\n\n F.reposition();\n\n F.isOpen = false;\n F.coming = null;\n\n F.bindEvents();\n\n if (!F.isOpened) {\n $('.fancybox-wrap').not(current.wrap).stop(true).trigger('onReset').remove();\n\n } else if (previous.prevMethod) {\n F.transitions[previous.prevMethod]();\n }\n\n F.transitions[F.isOpened ? current.nextMethod : current.openMethod]();\n\n F._preloadImages();\n },\n\n _setDimension: function () {\n var viewport = F.getViewport(),\n\t\t\t\tsteps = 0,\n\t\t\t\tcanShrink = false,\n\t\t\t\tcanExpand = false,\n\t\t\t\twrap = F.wrap,\n\t\t\t\tskin = F.skin,\n\t\t\t\tinner = F.inner,\n\t\t\t\tcurrent = F.current,\n\t\t\t\twidth = current.width,\n\t\t\t\theight = current.height,\n\t\t\t\tminWidth = current.minWidth,\n\t\t\t\tminHeight = current.minHeight,\n\t\t\t\tmaxWidth = current.maxWidth,\n\t\t\t\tmaxHeight = current.maxHeight,\n\t\t\t\tscrolling = current.scrolling,\n\t\t\t\tscrollOut = current.scrollOutside ? current.scrollbarWidth : 0,\n\t\t\t\tmargin = current.margin,\n\t\t\t\twMargin = getScalar(margin[1] + margin[3]),\n\t\t\t\thMargin = getScalar(margin[0] + margin[2]),\n\t\t\t\twPadding,\n\t\t\t\thPadding,\n\t\t\t\twSpace,\n\t\t\t\thSpace,\n\t\t\t\torigWidth,\n\t\t\t\torigHeight,\n\t\t\t\torigMaxWidth,\n\t\t\t\torigMaxHeight,\n\t\t\t\tratio,\n\t\t\t\twidth_,\n\t\t\t\theight_,\n\t\t\t\tmaxWidth_,\n\t\t\t\tmaxHeight_,\n\t\t\t\tiframe,\n\t\t\t\tbody;\n\n // Reset dimensions so we could re-check actual size\n wrap.add(skin).add(inner).width('auto').height('auto').removeClass('fancybox-tmp');\n\n wPadding = getScalar(skin.outerWidth(true) - skin.width());\n hPadding = getScalar(skin.outerHeight(true) - skin.height());\n\n // Any space between content and viewport (margin, padding, border, title)\n wSpace = wMargin + wPadding;\n hSpace = hMargin + hPadding;\n\n origWidth = isPercentage(width) ? (viewport.w - wSpace) * getScalar(width) / 100 : width;\n origHeight = isPercentage(height) ? (viewport.h - hSpace) * getScalar(height) / 100 : height;\n\n if (current.type === 'iframe') {\n iframe = current.content;\n\n if (current.autoHeight && iframe.data('ready') === 1) {\n try {\n if (iframe[0].contentWindow.document.location) {\n inner.width(origWidth).height(9999);\n\n body = iframe.contents().find('body');\n\n if (scrollOut) {\n body.css('overflow-x', 'hidden');\n }\n\n origHeight = body.outerHeight(true);\n }\n\n } catch (e) { }\n }\n\n } else if (current.autoWidth || current.autoHeight) {\n inner.addClass('fancybox-tmp');\n\n // Set width or height in case we need to calculate only one dimension\n if (!current.autoWidth) {\n inner.width(origWidth);\n }\n\n if (!current.autoHeight) {\n inner.height(origHeight);\n }\n\n if (current.autoWidth) {\n origWidth = inner.width();\n }\n\n if (current.autoHeight) {\n origHeight = inner.height();\n }\n\n inner.removeClass('fancybox-tmp');\n }\n\n width = getScalar(origWidth);\n height = getScalar(origHeight);\n\n ratio = origWidth / origHeight;\n\n // Calculations for the content\n minWidth = getScalar(isPercentage(minWidth) ? getScalar(minWidth, 'w') - wSpace : minWidth);\n maxWidth = getScalar(isPercentage(maxWidth) ? getScalar(maxWidth, 'w') - wSpace : maxWidth);\n\n minHeight = getScalar(isPercentage(minHeight) ? getScalar(minHeight, 'h') - hSpace : minHeight);\n maxHeight = getScalar(isPercentage(maxHeight) ? getScalar(maxHeight, 'h') - hSpace : maxHeight);\n\n // These will be used to determine if wrap can fit in the viewport\n origMaxWidth = maxWidth;\n origMaxHeight = maxHeight;\n\n if (current.fitToView) {\n maxWidth = Math.min(viewport.w - wSpace, maxWidth);\n maxHeight = Math.min(viewport.h - hSpace, maxHeight);\n }\n\n maxWidth_ = viewport.w - wMargin;\n maxHeight_ = viewport.h - hMargin;\n\n if (current.aspectRatio) {\n if (width > maxWidth) {\n width = maxWidth;\n height = getScalar(width / ratio);\n }\n\n if (height > maxHeight) {\n height = maxHeight;\n width = getScalar(height * ratio);\n }\n\n if (width < minWidth) {\n width = minWidth;\n height = getScalar(width / ratio);\n }\n\n if (height < minHeight) {\n height = minHeight;\n width = getScalar(height * ratio);\n }\n\n } else {\n width = Math.max(minWidth, Math.min(width, maxWidth));\n\n if (current.autoHeight && current.type !== 'iframe') {\n inner.width(width);\n\n height = inner.height();\n }\n\n height = Math.max(minHeight, Math.min(height, maxHeight));\n }\n\n // Try to fit inside viewport (including the title)\n if (current.fitToView) {\n inner.width(width).height(height);\n\n wrap.width(width + wPadding);\n\n // Real wrap dimensions\n width_ = wrap.width();\n height_ = wrap.height();\n\n if (current.aspectRatio) {\n while ((width_ > maxWidth_ || height_ > maxHeight_) && width > minWidth && height > minHeight) {\n if (steps++ > 19) {\n break;\n }\n\n height = Math.max(minHeight, Math.min(maxHeight, height - 10));\n width = getScalar(height * ratio);\n\n if (width < minWidth) {\n width = minWidth;\n height = getScalar(width / ratio);\n }\n\n if (width > maxWidth) {\n width = maxWidth;\n height = getScalar(width / ratio);\n }\n\n inner.width(width).height(height);\n\n wrap.width(width + wPadding);\n\n width_ = wrap.width();\n height_ = wrap.height();\n }\n\n } else {\n width = Math.max(minWidth, Math.min(width, width - (width_ - maxWidth_)));\n height = Math.max(minHeight, Math.min(height, height - (height_ - maxHeight_)));\n }\n }\n\n if (scrollOut && scrolling === 'auto' && height < origHeight && (width + wPadding + scrollOut) < maxWidth_) {\n width += scrollOut;\n }\n\n inner.width(width).height(height);\n\n wrap.width(width + wPadding);\n\n width_ = wrap.width();\n height_ = wrap.height();\n\n canShrink = (width_ > maxWidth_ || height_ > maxHeight_) && width > minWidth && height > minHeight;\n canExpand = current.aspectRatio ? (width < origMaxWidth && height < origMaxHeight && width < origWidth && height < origHeight) : ((width < origMaxWidth || height < origMaxHeight) && (width < origWidth || height < origHeight));\n\n $.extend(current, {\n dim: {\n width: getValue(width_),\n height: getValue(height_)\n },\n origWidth: origWidth,\n origHeight: origHeight,\n canShrink: canShrink,\n canExpand: canExpand,\n wPadding: wPadding,\n hPadding: hPadding,\n wrapSpace: height_ - skin.outerHeight(true),\n skinSpace: skin.height() - height\n });\n\n if (!iframe && current.autoHeight && height > minHeight && height < maxHeight && !canExpand) {\n inner.height('auto');\n }\n },\n\n _getPosition: function (onlyAbsolute) {\n var current = F.current,\n\t\t\t\tviewport = F.getViewport(),\n\t\t\t\tmargin = current.margin,\n\t\t\t\twidth = F.wrap.width() + margin[1] + margin[3],\n\t\t\t\theight = F.wrap.height() + margin[0] + margin[2],\n\t\t\t\trez = {\n\t\t\t\t position: 'absolute',\n\t\t\t\t top: margin[0],\n\t\t\t\t left: margin[3]\n\t\t\t\t};\n\n if (current.autoCenter && current.fixed && !onlyAbsolute && height <= viewport.h && width <= viewport.w) {\n rez.position = 'fixed';\n\n } else if (!current.locked) {\n rez.top += viewport.y;\n rez.left += viewport.x;\n }\n\n rez.top = getValue(Math.max(rez.top, rez.top + ((viewport.h - height) * current.topRatio)));\n rez.left = getValue(Math.max(rez.left, rez.left + ((viewport.w - width) * current.leftRatio)));\n\n return rez;\n },\n\n _afterZoomIn: function () {\n var current = F.current;\n\n if (!current) {\n return;\n }\n\n F.isOpen = F.isOpened = true;\n\n F.wrap.css('overflow', 'visible').addClass('fancybox-opened');\n\n F.update();\n\n // Assign a click event\n if (current.closeClick || (current.nextClick && F.group.length > 1)) {\n F.inner.css('cursor', 'pointer').bind('click.fb', function (e) {\n if (!$(e.target).is('a') && !$(e.target).parent().is('a')) {\n e.preventDefault();\n\n F[current.closeClick ? 'close' : 'next']();\n }\n });\n }\n\n // Create a close button\n if (current.closeBtn) {\n $(current.tpl.closeBtn).appendTo(F.skin).bind('click.fb', function (e) {\n e.preventDefault();\n\n F.close();\n });\n }\n\n // Create navigation arrows\n if (current.arrows && F.group.length > 1) {\n if (current.loop || current.index > 0) {\n $(current.tpl.prev).appendTo(F.outer).bind('click.fb', F.prev);\n }\n\n if (current.loop || current.index < F.group.length - 1) {\n $(current.tpl.next).appendTo(F.outer).bind('click.fb', F.next);\n }\n }\n\n F.trigger('afterShow');\n\n // Stop the slideshow if this is the last item\n if (!current.loop && current.index === current.group.length - 1) {\n F.play(false);\n\n } else if (F.opts.autoPlay && !F.player.isActive) {\n F.opts.autoPlay = false;\n\n F.play();\n }\n },\n\n _afterZoomOut: function (obj) {\n obj = obj || F.current;\n\n $('.fancybox-wrap').trigger('onReset').remove();\n\n $.extend(F, {\n group: {},\n opts: {},\n router: false,\n current: null,\n isActive: false,\n isOpened: false,\n isOpen: false,\n isClosing: false,\n wrap: null,\n skin: null,\n outer: null,\n inner: null\n });\n\n F.trigger('afterClose', obj);\n }\n });\n\n /*\n\t *\tDefault transitions\n\t */\n\n F.transitions = {\n getOrigPosition: function () {\n var current = F.current,\n\t\t\t\telement = current.element,\n\t\t\t\torig = current.orig,\n\t\t\t\tpos = {},\n\t\t\t\twidth = 50,\n\t\t\t\theight = 50,\n\t\t\t\thPadding = current.hPadding,\n\t\t\t\twPadding = current.wPadding,\n\t\t\t\tviewport = F.getViewport();\n\n if (!orig && current.isDom && element.is(':visible')) {\n orig = element.find('img:first');\n\n if (!orig.length) {\n orig = element;\n }\n }\n\n if (isQuery(orig)) {\n pos = orig.offset();\n\n if (orig.is('img')) {\n width = orig.outerWidth();\n height = orig.outerHeight();\n }\n\n } else {\n pos.top = viewport.y + (viewport.h - height) * current.topRatio;\n pos.left = viewport.x + (viewport.w - width) * current.leftRatio;\n }\n\n if (F.wrap.css('position') === 'fixed' || current.locked) {\n pos.top -= viewport.y;\n pos.left -= viewport.x;\n }\n\n pos = {\n top: getValue(pos.top - hPadding * current.topRatio),\n left: getValue(pos.left - wPadding * current.leftRatio),\n width: getValue(width + wPadding),\n height: getValue(height + hPadding)\n };\n\n return pos;\n },\n\n step: function (now, fx) {\n var ratio,\n\t\t\t\tpadding,\n\t\t\t\tvalue,\n\t\t\t\tprop = fx.prop,\n\t\t\t\tcurrent = F.current,\n\t\t\t\twrapSpace = current.wrapSpace,\n\t\t\t\tskinSpace = current.skinSpace;\n\n if (prop === 'width' || prop === 'height') {\n ratio = fx.end === fx.start ? 1 : (now - fx.start) / (fx.end - fx.start);\n\n if (F.isClosing) {\n ratio = 1 - ratio;\n }\n\n padding = prop === 'width' ? current.wPadding : current.hPadding;\n value = now - padding;\n\n F.skin[prop](getScalar(prop === 'width' ? value : value - (wrapSpace * ratio)));\n F.inner[prop](getScalar(prop === 'width' ? value : value - (wrapSpace * ratio) - (skinSpace * ratio)));\n }\n },\n\n zoomIn: function () {\n var current = F.current,\n\t\t\t\tstartPos = current.pos,\n\t\t\t\teffect = current.openEffect,\n\t\t\t\telastic = effect === 'elastic',\n\t\t\t\tendPos = $.extend({ opacity: 1 }, startPos);\n\n // Remove \"position\" property that breaks older IE\n delete endPos.position;\n\n if (elastic) {\n startPos = this.getOrigPosition();\n\n if (current.openOpacity) {\n startPos.opacity = 0.1;\n }\n\n } else if (effect === 'fade') {\n startPos.opacity = 0.1;\n }\n\n F.wrap.css(startPos).animate(endPos, {\n duration: effect === 'none' ? 0 : current.openSpeed,\n easing: current.openEasing,\n step: elastic ? this.step : null,\n complete: F._afterZoomIn\n });\n },\n\n zoomOut: function () {\n var current = F.current,\n\t\t\t\teffect = current.closeEffect,\n\t\t\t\telastic = effect === 'elastic',\n\t\t\t\tendPos = { opacity: 0.1 };\n\n if (elastic) {\n endPos = this.getOrigPosition();\n\n if (current.closeOpacity) {\n endPos.opacity = 0.1;\n }\n }\n\n F.wrap.animate(endPos, {\n duration: effect === 'none' ? 0 : current.closeSpeed,\n easing: current.closeEasing,\n step: elastic ? this.step : null,\n complete: F._afterZoomOut\n });\n },\n\n changeIn: function () {\n var current = F.current,\n\t\t\t\teffect = current.nextEffect,\n\t\t\t\tstartPos = current.pos,\n\t\t\t\tendPos = { opacity: 1 },\n\t\t\t\tdirection = F.direction,\n\t\t\t\tdistance = 200,\n\t\t\t\tfield;\n\n startPos.opacity = 0.1;\n\n if (effect === 'elastic') {\n field = direction === 'down' || direction === 'up' ? 'top' : 'left';\n\n if (direction === 'down' || direction === 'right') {\n startPos[field] = getValue(getScalar(startPos[field]) - distance);\n endPos[field] = '+=' + distance + 'px';\n\n } else {\n startPos[field] = getValue(getScalar(startPos[field]) + distance);\n endPos[field] = '-=' + distance + 'px';\n }\n }\n\n // Workaround for http://bugs.jquery.com/ticket/12273\n if (effect === 'none') {\n F._afterZoomIn();\n\n } else {\n F.wrap.css(startPos).animate(endPos, {\n duration: current.nextSpeed,\n easing: current.nextEasing,\n complete: F._afterZoomIn\n });\n }\n },\n\n changeOut: function () {\n var previous = F.previous,\n\t\t\t\teffect = previous.prevEffect,\n\t\t\t\tendPos = { opacity: 0.1 },\n\t\t\t\tdirection = F.direction,\n\t\t\t\tdistance = 200;\n\n if (effect === 'elastic') {\n endPos[direction === 'down' || direction === 'up' ? 'top' : 'left'] = (direction === 'up' || direction === 'left' ? '-' : '+') + '=' + distance + 'px';\n }\n\n previous.wrap.animate(endPos, {\n duration: effect === 'none' ? 0 : previous.prevSpeed,\n easing: previous.prevEasing,\n complete: function () {\n $(this).trigger('onReset').remove();\n }\n });\n }\n };\n\n /*\n\t *\tOverlay helper\n\t */\n\n F.helpers.overlay = {\n defaults: {\n closeClick: true, // if true, fancyBox will be closed when user clicks on the overlay\n speedOut: 200, // duration of fadeOut animation\n showEarly: true, // indicates if should be opened immediately or wait until the content is ready\n css: {}, // custom CSS properties\n locked: !isTouch, // if true, the content will be locked into overlay\n fixed: true // if false, the overlay CSS position property will not be set to \"fixed\"\n },\n\n overlay: null, // current handle\n fixed: false, // indicates if the overlay has position \"fixed\"\n el: $('html'), // element that contains \"the lock\"\n\n // Public methods\n create: function (opts) {\n opts = $.extend({}, this.defaults, opts);\n\n if (this.overlay) {\n this.close();\n }\n\n this.overlay = $('
').appendTo(F.coming ? F.coming.parent : opts.parent);\n this.fixed = false;\n\n if (opts.fixed && F.defaults.fixed) {\n this.overlay.addClass('fancybox-overlay-fixed');\n\n this.fixed = true;\n }\n },\n\n open: function (opts) {\n var that = this;\n\n opts = $.extend({}, this.defaults, opts);\n\n if (this.overlay) {\n this.overlay.unbind('.overlay').width('auto').height('auto');\n\n } else {\n this.create(opts);\n }\n\n if (!this.fixed) {\n W.bind('resize.overlay', $.proxy(this.update, this));\n\n this.update();\n }\n\n if (opts.closeClick) {\n this.overlay.bind('click.overlay', function (e) {\n if ($(e.target).hasClass('fancybox-overlay')) {\n if (F.isActive) {\n F.close();\n } else {\n that.close();\n }\n\n return false;\n }\n });\n }\n\n this.overlay.css(opts.css).show();\n },\n\n close: function () {\n var scrollV, scrollH;\n\n W.unbind('resize.overlay');\n\n if (this.el.hasClass('fancybox-lock')) {\n $('.fancybox-margin').removeClass('fancybox-margin');\n\n scrollV = W.scrollTop();\n scrollH = W.scrollLeft();\n\n this.el.removeClass('fancybox-lock');\n\n W.scrollTop(scrollV).scrollLeft(scrollH);\n }\n\n $('.fancybox-overlay').remove().hide();\n\n $.extend(this, {\n overlay: null,\n fixed: false\n });\n },\n\n // Private, callbacks\n\n update: function () {\n var width = '100%', offsetWidth;\n\n // Reset width/height so it will not mess\n this.overlay.width(width).height('100%');\n\n // jQuery does not return reliable result for IE\n if (IE) {\n offsetWidth = Math.max(document.documentElement.offsetWidth, document.body.offsetWidth);\n\n if (D.width() > offsetWidth) {\n width = D.width();\n }\n\n } else if (D.width() > W.width()) {\n width = D.width();\n }\n\n this.overlay.width(width).height(D.height());\n },\n\n // This is where we can manipulate DOM, because later it would cause iframes to reload\n onReady: function (opts, obj) {\n var overlay = this.overlay;\n\n $('.fancybox-overlay').stop(true, true);\n\n if (!overlay) {\n this.create(opts);\n }\n\n if (opts.locked && this.fixed && obj.fixed) {\n if (!overlay) {\n this.margin = D.height() > W.height() ? $('html').css('margin-right').replace(\"px\", \"\") : false;\n }\n\n obj.locked = this.overlay.append(obj.wrap);\n obj.fixed = false;\n }\n\n if (opts.showEarly === true) {\n this.beforeShow.apply(this, arguments);\n }\n },\n\n beforeShow: function (opts, obj) {\n var scrollV, scrollH;\n\n if (obj.locked) {\n if (this.margin !== false) {\n $('*').filter(function () {\n return ($(this).css('position') === 'fixed' && !$(this).hasClass(\"fancybox-overlay\") && !$(this).hasClass(\"fancybox-wrap\"));\n }).addClass('fancybox-margin');\n\n this.el.addClass('fancybox-margin');\n }\n\n scrollV = W.scrollTop();\n scrollH = W.scrollLeft();\n\n this.el.addClass('fancybox-lock');\n\n W.scrollTop(scrollV).scrollLeft(scrollH);\n }\n\n this.open(opts);\n },\n\n onUpdate: function () {\n if (!this.fixed) {\n this.update();\n }\n },\n\n afterClose: function (opts) {\n // Remove overlay if exists and fancyBox is not opening\n // (e.g., it is not being open using afterClose callback)\n //if (this.overlay && !F.isActive) {\n if (this.overlay && !F.coming) {\n this.overlay.fadeOut(opts.speedOut, $.proxy(this.close, this));\n }\n }\n };\n\n /*\n\t *\tTitle helper\n\t */\n\n F.helpers.title = {\n defaults: {\n type: 'float', // 'float', 'inside', 'outside' or 'over',\n position: 'bottom' // 'top' or 'bottom'\n },\n\n beforeShow: function (opts) {\n var current = F.current,\n\t\t\t\ttext = current.title,\n\t\t\t\ttype = opts.type,\n\t\t\t\ttitle,\n\t\t\t\ttarget;\n\n if ($.isFunction(text)) {\n text = text.call(current.element, current);\n }\n\n if (!isString(text) || $.trim(text) === '') {\n return;\n }\n\n title = $('
' + text + '
');\n\n switch (type) {\n case 'inside':\n target = F.skin;\n break;\n\n case 'outside':\n target = F.wrap;\n break;\n\n case 'over':\n target = F.inner;\n break;\n\n default: // 'float'\n target = F.skin;\n\n title.appendTo('body');\n\n if (IE) {\n title.width(title.width());\n }\n\n title.wrapInner('');\n\n //Increase bottom margin so this title will also fit into viewport\n F.current.margin[2] += Math.abs(getScalar(title.css('margin-bottom')));\n break;\n }\n\n title[(opts.position === 'top' ? 'prependTo' : 'appendTo')](target);\n }\n };\n\n // jQuery plugin initialization\n $.fn.fancybox = function (options) {\n var index,\n\t\t\tthat = $(this),\n\t\t\tselector = this.selector || '',\n\t\t\trun = function (e) {\n\t\t\t var what = $(this).blur(), idx = index, relType, relVal;\n\n\t\t\t if (!(e.ctrlKey || e.altKey || e.shiftKey || e.metaKey) && !what.is('.fancybox-wrap')) {\n\t\t\t relType = options.groupAttr || 'data-fancybox-group';\n\t\t\t relVal = what.attr(relType);\n\n\t\t\t if (!relVal) {\n\t\t\t relType = 'rel';\n\t\t\t relVal = what.get(0)[relType];\n\t\t\t }\n\n\t\t\t if (relVal && relVal !== '' && relVal !== 'nofollow') {\n\t\t\t what = selector.length ? $(selector) : that;\n\t\t\t what = what.filter('[' + relType + '=\"' + relVal + '\"]');\n\t\t\t idx = what.index(this);\n\t\t\t }\n\n\t\t\t options.index = idx;\n\n\t\t\t // Stop an event from bubbling if everything is fine\n\t\t\t if (F.open(what, options) !== false) {\n\t\t\t e.preventDefault();\n\t\t\t }\n\t\t\t }\n\t\t\t};\n\n options = options || {};\n index = options.index || 0;\n\n if (!selector || options.live === false) {\n that.unbind('click.fb-start').bind('click.fb-start', run);\n\n } else {\n D.undelegate(selector, 'click.fb-start').delegate(selector + \":not('.fancybox-item, .fancybox-nav')\", 'click.fb-start', run);\n }\n\n this.filter('[data-fancybox-start=1]').trigger('click');\n\n return this;\n };\n\n // Tests that need a body at doc ready\n D.ready(function () {\n var w1, w2;\n\n if ($.scrollbarWidth === undefined) {\n // http://benalman.com/projects/jquery-misc-plugins/#scrollbarwidth\n $.scrollbarWidth = function () {\n var parent = $('
').appendTo('body'),\n\t\t\t\t\tchild = parent.children(),\n\t\t\t\t\twidth = child.innerWidth() - child.height(99).innerWidth();\n\n parent.remove();\n\n return width;\n };\n }\n\n if ($.support.fixedPosition === undefined) {\n $.support.fixedPosition = (function () {\n var elem = $('
').appendTo('body'),\n\t\t\t\t\tfixed = (elem[0].offsetTop === 20 || elem[0].offsetTop === 15);\n\n elem.remove();\n\n return fixed;\n }());\n }\n\n $.extend(F.defaults, {\n scrollbarWidth: $.scrollbarWidth(),\n fixed: $.support.fixedPosition,\n parent: $('body')\n });\n\n //Get real width of page scroll-bar\n w1 = $(window).width();\n\n H.addClass('fancybox-lock-test');\n\n w2 = $(window).width();\n\n H.removeClass('fancybox-lock-test');\n\n $(\"\").appendTo(\"head\");\n });\n\n}(window, document, jQuery));\n\n\n\nif ($.find('.fancybox').length) {\n $('.fancybox').fancybox();\n}\n//gallery option 2\n\nif ($.find('.fancybox2').length) {\n $('.fancybox2').fancybox();\n}"], "mappings": "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", "names": [] }