{"version":3,"sources":["webpack:////tmp/build_74596f24/app/assets/es6/vendor/jquery.magnific-popup.js","webpack:////tmp/build_74596f24/app/assets/es6/vendor/jquery.magnific-popup.js?dcfe"],"names":["module","exports","__webpack_require__"],"mappings":"8EAAAA,EAAAC,QAAA,q0hGCAAC,EAAQ,OAARA,CAAyEA,EAAQ","file":"9-9-ab38b503ac4d79aa844d.js","sourcesContent":["module.exports = \"/*! Magnific Popup - v1.1.0 - 2016-02-20\\n* http://dimsemenov.com/plugins/magnific-popup/\\n* Copyright (c) 2016 Dmitry Semenov; */\\n; (function (factory) {\\n\\tif (typeof define === 'function' && define.amd) {\\n\\t\\t// AMD. Register as an anonymous module. \\n\\t\\tdefine(['jquery'], factory);\\n\\t} else if (typeof exports === 'object') {\\n\\t\\t// Node/CommonJS \\n\\t\\tfactory(require('jquery'));\\n\\t} else {\\n\\t\\t// Browser globals \\n\\t\\tfactory(window.jQuery || window.Zepto);\\n\\t}\\n}(function ($) {\\n\\n\\t/*>>core*/\\n\\t/**\\n\\t * \\n\\t * Magnific Popup Core JS file\\n\\t * \\n\\t */\\n\\n\\n\\t/**\\n\\t * Private static constants\\n\\t */\\n\\tvar CLOSE_EVENT = 'Close',\\n\\t\\tBEFORE_CLOSE_EVENT = 'BeforeClose',\\n\\t\\tAFTER_CLOSE_EVENT = 'AfterClose',\\n\\t\\tBEFORE_APPEND_EVENT = 'BeforeAppend',\\n\\t\\tMARKUP_PARSE_EVENT = 'MarkupParse',\\n\\t\\tOPEN_EVENT = 'Open',\\n\\t\\tCHANGE_EVENT = 'Change',\\n\\t\\tNS = 'mfp',\\n\\t\\tEVENT_NS = '.' + NS,\\n\\t\\tREADY_CLASS = 'mfp-ready',\\n\\t\\tREMOVING_CLASS = 'mfp-removing',\\n\\t\\tPREVENT_CLOSE_CLASS = 'mfp-prevent-close';\\n\\n\\n\\t/**\\n\\t * Private vars \\n\\t */\\n\\t/*jshint -W079 */\\n\\tvar mfp, // As we have only one instance of MagnificPopup object, we define it locally to not to use 'this'\\n\\t\\tMagnificPopup = function () { },\\n\\t\\t_isJQ = !!(window.jQuery),\\n\\t\\t_prevStatus,\\n\\t\\t_window = $(window),\\n\\t\\t_document,\\n\\t\\t_prevContentType,\\n\\t\\t_wrapClasses,\\n\\t\\t_currPopupType;\\n\\n\\n\\t/**\\n\\t * Private functions\\n\\t */\\n\\tvar _mfpOn = function (name, f) {\\n\\t\\tmfp.ev.on(NS + name + EVENT_NS, f);\\n\\t},\\n\\t\\t_getEl = function (className, appendTo, html, raw) {\\n\\t\\t\\tvar el = document.createElement('div');\\n\\t\\t\\tel.className = 'mfp-' + className;\\n\\t\\t\\tif (html) {\\n\\t\\t\\t\\tel.innerHTML = html;\\n\\t\\t\\t}\\n\\t\\t\\tif (!raw) {\\n\\t\\t\\t\\tel = $(el);\\n\\t\\t\\t\\tif (appendTo) {\\n\\t\\t\\t\\t\\tel.appendTo(appendTo);\\n\\t\\t\\t\\t}\\n\\t\\t\\t} else if (appendTo) {\\n\\t\\t\\t\\tappendTo.appendChild(el);\\n\\t\\t\\t}\\n\\t\\t\\treturn el;\\n\\t\\t},\\n\\t\\t_mfpTrigger = function (e, data) {\\n\\t\\t\\tmfp.ev.triggerHandler(NS + e, data);\\n\\n\\t\\t\\tif (mfp.st.callbacks) {\\n\\t\\t\\t\\t// converts \\\"mfpEventName\\\" to \\\"eventName\\\" callback and triggers it if it's present\\n\\t\\t\\t\\te = e.charAt(0).toLowerCase() + e.slice(1);\\n\\t\\t\\t\\tif (mfp.st.callbacks[e]) {\\n\\t\\t\\t\\t\\tmfp.st.callbacks[e].apply(mfp, $.isArray(data) ? data : [data]);\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t},\\n\\t\\t_getCloseBtn = function (type) {\\n\\t\\t\\tif (type !== _currPopupType || !mfp.currTemplate.closeBtn) {\\n\\t\\t\\t\\tmfp.currTemplate.closeBtn = $(mfp.st.closeMarkup.replace('%title%', mfp.st.tClose));\\n\\t\\t\\t\\t_currPopupType = type;\\n\\t\\t\\t}\\n\\t\\t\\treturn mfp.currTemplate.closeBtn;\\n\\t\\t},\\n\\t\\t// Initialize Magnific Popup only when called at least once\\n\\t\\t_checkInstance = function () {\\n\\t\\t\\tif (!$.magnificPopup.instance) {\\n\\t\\t\\t\\t/*jshint -W020 */\\n\\t\\t\\t\\tmfp = new MagnificPopup();\\n\\t\\t\\t\\tmfp.init();\\n\\t\\t\\t\\t$.magnificPopup.instance = mfp;\\n\\t\\t\\t}\\n\\t\\t},\\n\\t\\t// CSS transition detection, http://stackoverflow.com/questions/7264899/detect-css-transitions-using-javascript-and-without-modernizr\\n\\t\\tsupportsTransitions = function () {\\n\\t\\t\\tvar s = document.createElement('p').style, // 's' for style. better to create an element if body yet to exist\\n\\t\\t\\t\\tv = ['ms', 'O', 'Moz', 'Webkit']; // 'v' for vendor\\n\\n\\t\\t\\tif (s['transition'] !== undefined) {\\n\\t\\t\\t\\treturn true;\\n\\t\\t\\t}\\n\\n\\t\\t\\twhile (v.length) {\\n\\t\\t\\t\\tif (v.pop() + 'Transition' in s) {\\n\\t\\t\\t\\t\\treturn true;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\treturn false;\\n\\t\\t};\\n\\n\\n\\n\\t/**\\n\\t * Public functions\\n\\t */\\n\\tMagnificPopup.prototype = {\\n\\n\\t\\tconstructor: MagnificPopup,\\n\\n\\t\\t/**\\n\\t\\t * Initializes Magnific Popup plugin. \\n\\t\\t * This function is triggered only once when $.fn.magnificPopup or $.magnificPopup is executed\\n\\t\\t */\\n\\t\\tinit: function () {\\n\\t\\t\\tvar appVersion = navigator.appVersion;\\n\\t\\t\\tmfp.isLowIE = mfp.isIE8 = document.all && !document.addEventListener;\\n\\t\\t\\tmfp.isAndroid = (/android/gi).test(appVersion);\\n\\t\\t\\tmfp.isIOS = (/iphone|ipad|ipod/gi).test(appVersion);\\n\\t\\t\\tmfp.supportsTransition = supportsTransitions();\\n\\n\\t\\t\\t// We disable fixed positioned lightbox on devices that don't handle it nicely.\\n\\t\\t\\t// If you know a better way of detecting this - let me know.\\n\\t\\t\\tmfp.probablyMobile = (mfp.isAndroid || mfp.isIOS || /(Opera Mini)|Kindle|webOS|BlackBerry|(Opera Mobi)|(Windows Phone)|IEMobile/i.test(navigator.userAgent));\\n\\t\\t\\t_document = $(document);\\n\\n\\t\\t\\tmfp.popupsCache = {};\\n\\t\\t},\\n\\n\\t\\t/**\\n\\t\\t * Opens popup\\n\\t\\t * @param data [description]\\n\\t\\t */\\n\\t\\topen: function (data) {\\n\\n\\t\\t\\tvar i;\\n\\n\\t\\t\\tif (data.isObj === false) {\\n\\t\\t\\t\\t// convert jQuery collection to array to avoid conflicts later\\n\\t\\t\\t\\tmfp.items = data.items.toArray();\\n\\n\\t\\t\\t\\tmfp.index = 0;\\n\\t\\t\\t\\tvar items = data.items,\\n\\t\\t\\t\\t\\titem;\\n\\t\\t\\t\\tfor (i = 0; i < items.length; i++) {\\n\\t\\t\\t\\t\\titem = items[i];\\n\\t\\t\\t\\t\\tif (item.parsed) {\\n\\t\\t\\t\\t\\t\\titem = item.el[0];\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\tif (item === data.el[0]) {\\n\\t\\t\\t\\t\\t\\tmfp.index = i;\\n\\t\\t\\t\\t\\t\\tbreak;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tmfp.items = $.isArray(data.items) ? data.items : [data.items];\\n\\t\\t\\t\\tmfp.index = data.index || 0;\\n\\t\\t\\t}\\n\\n\\t\\t\\t// if popup is already opened - we just update the content\\n\\t\\t\\tif (mfp.isOpen) {\\n\\t\\t\\t\\tmfp.updateItemHTML();\\n\\t\\t\\t\\treturn;\\n\\t\\t\\t}\\n\\n\\t\\t\\tmfp.types = [];\\n\\t\\t\\t_wrapClasses = '';\\n\\t\\t\\tif (data.mainEl && data.mainEl.length) {\\n\\t\\t\\t\\tmfp.ev = data.mainEl.eq(0);\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tmfp.ev = _document;\\n\\t\\t\\t}\\n\\n\\t\\t\\tif (data.key) {\\n\\t\\t\\t\\tif (!mfp.popupsCache[data.key]) {\\n\\t\\t\\t\\t\\tmfp.popupsCache[data.key] = {};\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\tmfp.currTemplate = mfp.popupsCache[data.key];\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tmfp.currTemplate = {};\\n\\t\\t\\t}\\n\\n\\n\\n\\t\\t\\tmfp.st = $.extend(true, {}, $.magnificPopup.defaults, data);\\n\\t\\t\\tmfp.fixedContentPos = mfp.st.fixedContentPos === 'auto' ? !mfp.probablyMobile : mfp.st.fixedContentPos;\\n\\n\\t\\t\\tif (mfp.st.modal) {\\n\\t\\t\\t\\tmfp.st.closeOnContentClick = false;\\n\\t\\t\\t\\tmfp.st.closeOnBgClick = false;\\n\\t\\t\\t\\tmfp.st.showCloseBtn = false;\\n\\t\\t\\t\\tmfp.st.enableEscapeKey = false;\\n\\t\\t\\t}\\n\\n\\n\\t\\t\\t// Building markup\\n\\t\\t\\t// main containers are created only once\\n\\t\\t\\tif (!mfp.bgOverlay) {\\n\\n\\t\\t\\t\\t// Dark overlay\\n\\t\\t\\t\\tmfp.bgOverlay = _getEl('bg').on('click' + EVENT_NS, function () {\\n\\t\\t\\t\\t\\tmfp.close();\\n\\t\\t\\t\\t});\\n\\n\\t\\t\\t\\tmfp.wrap = _getEl('wrap').attr('tabindex', -1).on('click' + EVENT_NS, function (e) {\\n\\t\\t\\t\\t\\tif (mfp._checkIfClose(e.target)) {\\n\\t\\t\\t\\t\\t\\tmfp.close();\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t});\\n\\n\\t\\t\\t\\tmfp.container = _getEl('container', mfp.wrap);\\n\\t\\t\\t}\\n\\n\\t\\t\\tmfp.contentContainer = _getEl('content');\\n\\t\\t\\tif (mfp.st.preloader) {\\n\\t\\t\\t\\tmfp.preloader = _getEl('preloader', mfp.container, mfp.st.tLoading);\\n\\t\\t\\t}\\n\\n\\n\\t\\t\\t// Initializing modules\\n\\t\\t\\tvar modules = $.magnificPopup.modules;\\n\\t\\t\\tfor (i = 0; i < modules.length; i++) {\\n\\t\\t\\t\\tvar n = modules[i];\\n\\t\\t\\t\\tn = n.charAt(0).toUpperCase() + n.slice(1);\\n\\t\\t\\t\\tmfp['init' + n].call(mfp);\\n\\t\\t\\t}\\n\\t\\t\\t_mfpTrigger('BeforeOpen');\\n\\n\\n\\t\\t\\tif (mfp.st.showCloseBtn) {\\n\\t\\t\\t\\t// Close button\\n\\t\\t\\t\\tif (!mfp.st.closeBtnInside) {\\n\\t\\t\\t\\t\\tmfp.wrap.append(_getCloseBtn());\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t_mfpOn(MARKUP_PARSE_EVENT, function (e, template, values, item) {\\n\\t\\t\\t\\t\\t\\tvalues.close_replaceWith = _getCloseBtn(item.type);\\n\\t\\t\\t\\t\\t});\\n\\t\\t\\t\\t\\t_wrapClasses += ' mfp-close-btn-in';\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\tif (mfp.st.alignTop) {\\n\\t\\t\\t\\t_wrapClasses += ' mfp-align-top';\\n\\t\\t\\t}\\n\\n\\n\\n\\t\\t\\tif (mfp.fixedContentPos) {\\n\\t\\t\\t\\tmfp.wrap.css({\\n\\t\\t\\t\\t\\toverflow: mfp.st.overflowY,\\n\\t\\t\\t\\t\\toverflowX: 'hidden',\\n\\t\\t\\t\\t\\toverflowY: mfp.st.overflowY\\n\\t\\t\\t\\t});\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tmfp.wrap.css({\\n\\t\\t\\t\\t\\ttop: _window.scrollTop(),\\n\\t\\t\\t\\t\\tposition: 'absolute'\\n\\t\\t\\t\\t});\\n\\t\\t\\t}\\n\\t\\t\\tif (mfp.st.fixedBgPos === false || (mfp.st.fixedBgPos === 'auto' && !mfp.fixedContentPos)) {\\n\\t\\t\\t\\tmfp.bgOverlay.css({\\n\\t\\t\\t\\t\\theight: _document.height(),\\n\\t\\t\\t\\t\\tposition: 'absolute'\\n\\t\\t\\t\\t});\\n\\t\\t\\t}\\n\\n\\n\\n\\t\\t\\tif (mfp.st.enableEscapeKey) {\\n\\t\\t\\t\\t// Close on ESC key\\n\\t\\t\\t\\t_document.on('keyup' + EVENT_NS, function (e) {\\n\\t\\t\\t\\t\\tif (e.keyCode === 27) {\\n\\t\\t\\t\\t\\t\\tmfp.close();\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t});\\n\\t\\t\\t}\\n\\n\\t\\t\\t_window.on('resize' + EVENT_NS, function () {\\n\\t\\t\\t\\tmfp.updateSize();\\n\\t\\t\\t});\\n\\n\\n\\t\\t\\tif (!mfp.st.closeOnContentClick) {\\n\\t\\t\\t\\t_wrapClasses += ' mfp-auto-cursor';\\n\\t\\t\\t}\\n\\n\\t\\t\\tif (_wrapClasses)\\n\\t\\t\\t\\tmfp.wrap.addClass(_wrapClasses);\\n\\n\\n\\t\\t\\t// this triggers recalculation of layout, so we get it once to not to trigger twice\\n\\t\\t\\tvar windowHeight = mfp.wH = _window.height();\\n\\n\\n\\t\\t\\tvar windowStyles = {};\\n\\n\\t\\t\\tif (mfp.fixedContentPos) {\\n\\t\\t\\t\\tif (mfp._hasScrollBar(windowHeight)) {\\n\\t\\t\\t\\t\\tvar s = mfp._getScrollbarSize();\\n\\t\\t\\t\\t\\tif (s) {\\n\\t\\t\\t\\t\\t\\twindowStyles.marginRight = s;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\tif (mfp.fixedContentPos) {\\n\\t\\t\\t\\tif (!mfp.isIE7) {\\n\\t\\t\\t\\t\\twindowStyles.overflow = 'hidden';\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t// ie7 double-scroll bug\\n\\t\\t\\t\\t\\t$('body, html').css('overflow', 'hidden');\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\n\\n\\t\\t\\tvar classesToadd = mfp.st.mainClass;\\n\\t\\t\\tif (mfp.isIE7) {\\n\\t\\t\\t\\tclassesToadd += ' mfp-ie7';\\n\\t\\t\\t}\\n\\t\\t\\tif (classesToadd) {\\n\\t\\t\\t\\tmfp._addClassToMFP(classesToadd);\\n\\t\\t\\t}\\n\\n\\t\\t\\t// add content\\n\\t\\t\\tmfp.updateItemHTML();\\n\\n\\t\\t\\t_mfpTrigger('BuildControls');\\n\\n\\t\\t\\t// remove scrollbar, add margin e.t.c\\n\\t\\t\\t$('html').css(windowStyles);\\n\\n\\t\\t\\t// add everything to DOM\\n\\t\\t\\tmfp.bgOverlay.add(mfp.wrap).prependTo(mfp.st.prependTo || $(document.body));\\n\\n\\t\\t\\t// Save last focused element\\n\\t\\t\\tmfp._lastFocusedEl = document.activeElement;\\n\\n\\t\\t\\t// Wait for next cycle to allow CSS transition\\n\\t\\t\\tsetTimeout(function () {\\n\\n\\t\\t\\t\\tif (mfp.content) {\\n\\t\\t\\t\\t\\tmfp._addClassToMFP(READY_CLASS);\\n\\t\\t\\t\\t\\tmfp._setFocus();\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t// if content is not defined (not loaded e.t.c) we add class only for BG\\n\\t\\t\\t\\t\\tmfp.bgOverlay.addClass(READY_CLASS);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// Trap the focus in popup\\n\\t\\t\\t\\t_document.on('focusin' + EVENT_NS, mfp._onFocusIn);\\n\\n\\t\\t\\t}, 16);\\n\\n\\t\\t\\tmfp.isOpen = true;\\n\\t\\t\\tmfp.updateSize(windowHeight);\\n\\t\\t\\t_mfpTrigger(OPEN_EVENT);\\n\\n\\t\\t\\treturn data;\\n\\t\\t},\\n\\n\\t\\t/**\\n\\t\\t * Closes the popup\\n\\t\\t */\\n\\t\\tclose: function () {\\n\\t\\t\\tif (!mfp.isOpen) return;\\n\\t\\t\\t_mfpTrigger(BEFORE_CLOSE_EVENT);\\n\\n\\t\\t\\tmfp.isOpen = false;\\n\\t\\t\\t// for CSS3 animation\\n\\t\\t\\tif (mfp.st.removalDelay && !mfp.isLowIE && mfp.supportsTransition) {\\n\\t\\t\\t\\tmfp._addClassToMFP(REMOVING_CLASS);\\n\\t\\t\\t\\tsetTimeout(function () {\\n\\t\\t\\t\\t\\tmfp._close();\\n\\t\\t\\t\\t}, mfp.st.removalDelay);\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tmfp._close();\\n\\t\\t\\t}\\n\\t\\t},\\n\\n\\t\\t/**\\n\\t\\t * Helper for close() function\\n\\t\\t */\\n\\t\\t_close: function () {\\n\\t\\t\\t_mfpTrigger(CLOSE_EVENT);\\n\\n\\t\\t\\tvar classesToRemove = REMOVING_CLASS + ' ' + READY_CLASS + ' ';\\n\\n\\t\\t\\tmfp.bgOverlay.detach();\\n\\t\\t\\tmfp.wrap.detach();\\n\\t\\t\\tmfp.container.empty();\\n\\n\\t\\t\\tif (mfp.st.mainClass) {\\n\\t\\t\\t\\tclassesToRemove += mfp.st.mainClass + ' ';\\n\\t\\t\\t}\\n\\n\\t\\t\\tmfp._removeClassFromMFP(classesToRemove);\\n\\n\\t\\t\\tif (mfp.fixedContentPos) {\\n\\t\\t\\t\\tvar windowStyles = { marginRight: '' };\\n\\t\\t\\t\\tif (mfp.isIE7) {\\n\\t\\t\\t\\t\\t$('body, html').css('overflow', '');\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\twindowStyles.overflow = '';\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\t$('html').css(windowStyles);\\n\\t\\t\\t}\\n\\n\\t\\t\\t_document.off('keyup' + EVENT_NS + ' focusin' + EVENT_NS);\\n\\t\\t\\tmfp.ev.off(EVENT_NS);\\n\\n\\t\\t\\t// clean up DOM elements that aren't removed\\n\\t\\t\\tmfp.wrap.attr('class', 'mfp-wrap').removeAttr('style');\\n\\t\\t\\tmfp.bgOverlay.attr('class', 'mfp-bg');\\n\\t\\t\\tmfp.container.attr('class', 'mfp-container');\\n\\n\\t\\t\\t// remove close button from target element\\n\\t\\t\\tif (mfp.st.showCloseBtn &&\\n\\t\\t\\t\\t(!mfp.st.closeBtnInside || mfp.currTemplate[mfp.currItem.type] === true)) {\\n\\t\\t\\t\\tif (mfp.currTemplate.closeBtn)\\n\\t\\t\\t\\t\\tmfp.currTemplate.closeBtn.detach();\\n\\t\\t\\t}\\n\\n\\n\\t\\t\\tif (mfp.st.autoFocusLast && mfp._lastFocusedEl) {\\n\\t\\t\\t\\t$(mfp._lastFocusedEl).focus(); // put tab focus back\\n\\t\\t\\t}\\n\\t\\t\\tmfp.currItem = null;\\n\\t\\t\\tmfp.content = null;\\n\\t\\t\\tmfp.currTemplate = null;\\n\\t\\t\\tmfp.prevHeight = 0;\\n\\n\\t\\t\\t_mfpTrigger(AFTER_CLOSE_EVENT);\\n\\t\\t},\\n\\n\\t\\tupdateSize: function (winHeight) {\\n\\n\\t\\t\\tif (mfp.isIOS) {\\n\\t\\t\\t\\t// fixes iOS nav bars https://github.com/dimsemenov/Magnific-Popup/issues/2\\n\\t\\t\\t\\tvar zoomLevel = document.documentElement.clientWidth / window.innerWidth;\\n\\t\\t\\t\\tvar height = window.innerHeight * zoomLevel;\\n\\t\\t\\t\\tmfp.wrap.css('height', height);\\n\\t\\t\\t\\tmfp.wH = height;\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tmfp.wH = winHeight || _window.height();\\n\\t\\t\\t}\\n\\t\\t\\t// Fixes #84: popup incorrectly positioned with position:relative on body\\n\\t\\t\\tif (!mfp.fixedContentPos) {\\n\\t\\t\\t\\tmfp.wrap.css('height', mfp.wH);\\n\\t\\t\\t}\\n\\n\\t\\t\\t_mfpTrigger('Resize');\\n\\n\\t\\t},\\n\\n\\t\\t/**\\n\\t\\t * Set content of popup based on current index\\n\\t\\t */\\n\\t\\tupdateItemHTML: function () {\\n\\t\\t\\tvar item = mfp.items[mfp.index];\\n\\n\\t\\t\\t// Detach and perform modifications\\n\\t\\t\\tmfp.contentContainer.detach();\\n\\n\\t\\t\\tif (mfp.content)\\n\\t\\t\\t\\tmfp.content.detach();\\n\\n\\t\\t\\tif (!item.parsed) {\\n\\t\\t\\t\\titem = mfp.parseEl(mfp.index);\\n\\t\\t\\t}\\n\\n\\t\\t\\tvar type = item.type;\\n\\n\\t\\t\\t_mfpTrigger('BeforeChange', [mfp.currItem ? mfp.currItem.type : '', type]);\\n\\t\\t\\t// BeforeChange event works like so:\\n\\t\\t\\t// _mfpOn('BeforeChange', function(e, prevType, newType) { });\\n\\n\\t\\t\\tmfp.currItem = item;\\n\\n\\t\\t\\tif (!mfp.currTemplate[type]) {\\n\\t\\t\\t\\tvar markup = mfp.st[type] ? mfp.st[type].markup : false;\\n\\n\\t\\t\\t\\t// allows to modify markup\\n\\t\\t\\t\\t_mfpTrigger('FirstMarkupParse', markup);\\n\\n\\t\\t\\t\\tif (markup) {\\n\\t\\t\\t\\t\\tmfp.currTemplate[type] = $(markup);\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t// if there is no markup found we just define that template is parsed\\n\\t\\t\\t\\t\\tmfp.currTemplate[type] = true;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\tif (_prevContentType && _prevContentType !== item.type) {\\n\\t\\t\\t\\tmfp.container.removeClass('mfp-' + _prevContentType + '-holder');\\n\\t\\t\\t}\\n\\n\\t\\t\\tvar newContent = mfp['get' + type.charAt(0).toUpperCase() + type.slice(1)](item, mfp.currTemplate[type]);\\n\\t\\t\\tmfp.appendContent(newContent, type);\\n\\n\\t\\t\\titem.preloaded = true;\\n\\n\\t\\t\\t_mfpTrigger(CHANGE_EVENT, item);\\n\\t\\t\\t_prevContentType = item.type;\\n\\n\\t\\t\\t// Append container back after its content changed\\n\\t\\t\\tmfp.container.prepend(mfp.contentContainer);\\n\\n\\t\\t\\t_mfpTrigger('AfterChange');\\n\\t\\t},\\n\\n\\n\\t\\t/**\\n\\t\\t * Set HTML content of popup\\n\\t\\t */\\n\\t\\tappendContent: function (newContent, type) {\\n\\t\\t\\tmfp.content = newContent;\\n\\n\\t\\t\\tif (newContent) {\\n\\t\\t\\t\\tif (mfp.st.showCloseBtn && mfp.st.closeBtnInside &&\\n\\t\\t\\t\\t\\tmfp.currTemplate[type] === true) {\\n\\t\\t\\t\\t\\t// if there is no markup, we just append close button element inside\\n\\t\\t\\t\\t\\tif (!mfp.content.find('.mfp-close').length) {\\n\\t\\t\\t\\t\\t\\tmfp.content.append(_getCloseBtn());\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\tmfp.content = newContent;\\n\\t\\t\\t\\t}\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tmfp.content = '';\\n\\t\\t\\t}\\n\\n\\t\\t\\t_mfpTrigger(BEFORE_APPEND_EVENT);\\n\\t\\t\\tmfp.container.addClass('mfp-' + type + '-holder');\\n\\n\\t\\t\\tmfp.contentContainer.append(mfp.content);\\n\\t\\t},\\n\\n\\n\\t\\t/**\\n\\t\\t * Creates Magnific Popup data object based on given data\\n\\t\\t * @param {int} index Index of item to parse\\n\\t\\t */\\n\\t\\tparseEl: function (index) {\\n\\t\\t\\tvar item = mfp.items[index],\\n\\t\\t\\t\\ttype;\\n\\n\\t\\t\\tif (item.tagName) {\\n\\t\\t\\t\\titem = { el: $(item) };\\n\\t\\t\\t} else {\\n\\t\\t\\t\\ttype = item.type;\\n\\t\\t\\t\\titem = { data: item, src: item.src };\\n\\t\\t\\t}\\n\\n\\t\\t\\tif (item.el) {\\n\\t\\t\\t\\tvar types = mfp.types;\\n\\n\\t\\t\\t\\t// check for 'mfp-TYPE' class\\n\\t\\t\\t\\tfor (var i = 0; i < types.length; i++) {\\n\\t\\t\\t\\t\\tif (item.el.hasClass('mfp-' + types[i])) {\\n\\t\\t\\t\\t\\t\\ttype = types[i];\\n\\t\\t\\t\\t\\t\\tbreak;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\titem.src = item.el.attr('data-mfp-src');\\n\\t\\t\\t\\tif (!item.src) {\\n\\t\\t\\t\\t\\titem.src = item.el.attr('href');\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\titem.type = type || mfp.st.type || 'inline';\\n\\t\\t\\titem.index = index;\\n\\t\\t\\titem.parsed = true;\\n\\t\\t\\tmfp.items[index] = item;\\n\\t\\t\\t_mfpTrigger('ElementParse', item);\\n\\n\\t\\t\\treturn mfp.items[index];\\n\\t\\t},\\n\\n\\n\\t\\t/**\\n\\t\\t * Initializes single popup or a group of popups\\n\\t\\t */\\n\\t\\taddGroup: function (el, options) {\\n\\t\\t\\tvar eHandler = function (e) {\\n\\t\\t\\t\\te.mfpEl = this;\\n\\t\\t\\t\\tmfp._openClick(e, el, options);\\n\\t\\t\\t};\\n\\n\\t\\t\\tif (!options) {\\n\\t\\t\\t\\toptions = {};\\n\\t\\t\\t}\\n\\n\\t\\t\\tvar eName = 'click.magnificPopup';\\n\\t\\t\\toptions.mainEl = el;\\n\\n\\t\\t\\tif (options.items) {\\n\\t\\t\\t\\toptions.isObj = true;\\n\\t\\t\\t\\tel.off(eName).on(eName, eHandler);\\n\\t\\t\\t} else {\\n\\t\\t\\t\\toptions.isObj = false;\\n\\t\\t\\t\\tif (options.delegate) {\\n\\t\\t\\t\\t\\tel.off(eName).on(eName, options.delegate, eHandler);\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\toptions.items = el;\\n\\t\\t\\t\\t\\tel.off(eName).on(eName, eHandler);\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t},\\n\\t\\t_openClick: function (e, el, options) {\\n\\t\\t\\tvar midClick = options.midClick !== undefined ? options.midClick : $.magnificPopup.defaults.midClick;\\n\\n\\n\\t\\t\\tif (!midClick && (e.which === 2 || e.ctrlKey || e.metaKey || e.altKey || e.shiftKey)) {\\n\\t\\t\\t\\treturn;\\n\\t\\t\\t}\\n\\n\\t\\t\\tvar disableOn = options.disableOn !== undefined ? options.disableOn : $.magnificPopup.defaults.disableOn;\\n\\n\\t\\t\\tif (disableOn) {\\n\\t\\t\\t\\tif ($.isFunction(disableOn)) {\\n\\t\\t\\t\\t\\tif (!disableOn.call(mfp)) {\\n\\t\\t\\t\\t\\t\\treturn true;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t} else { // else it's number\\n\\t\\t\\t\\t\\tif (_window.width() < disableOn) {\\n\\t\\t\\t\\t\\t\\treturn true;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\tif (e.type) {\\n\\t\\t\\t\\te.preventDefault();\\n\\n\\t\\t\\t\\t// This will prevent popup from closing if element is inside and popup is already opened\\n\\t\\t\\t\\tif (mfp.isOpen) {\\n\\t\\t\\t\\t\\te.stopPropagation();\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\toptions.el = $(e.mfpEl);\\n\\t\\t\\tif (options.delegate) {\\n\\t\\t\\t\\toptions.items = el.find(options.delegate);\\n\\t\\t\\t}\\n\\t\\t\\tmfp.open(options);\\n\\t\\t},\\n\\n\\n\\t\\t/**\\n\\t\\t * Updates text on preloader\\n\\t\\t */\\n\\t\\tupdateStatus: function (status, text) {\\n\\n\\t\\t\\tif (mfp.preloader) {\\n\\t\\t\\t\\tif (_prevStatus !== status) {\\n\\t\\t\\t\\t\\tmfp.container.removeClass('mfp-s-' + _prevStatus);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\tif (!text && status === 'loading') {\\n\\t\\t\\t\\t\\ttext = mfp.st.tLoading;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\tvar data = {\\n\\t\\t\\t\\t\\tstatus: status,\\n\\t\\t\\t\\t\\ttext: text\\n\\t\\t\\t\\t};\\n\\t\\t\\t\\t// allows to modify status\\n\\t\\t\\t\\t_mfpTrigger('UpdateStatus', data);\\n\\n\\t\\t\\t\\tstatus = data.status;\\n\\t\\t\\t\\ttext = data.text;\\n\\n\\t\\t\\t\\tmfp.preloader.html(text);\\n\\n\\t\\t\\t\\tmfp.preloader.find('a').on('click', function (e) {\\n\\t\\t\\t\\t\\te.stopImmediatePropagation();\\n\\t\\t\\t\\t});\\n\\n\\t\\t\\t\\tmfp.container.addClass('mfp-s-' + status);\\n\\t\\t\\t\\t_prevStatus = status;\\n\\t\\t\\t}\\n\\t\\t},\\n\\n\\n\\t\\t/*\\n\\t\\t\\t\\\"Private\\\" helpers that aren't private at all\\n\\t\\t */\\n\\t\\t// Check to close popup or not\\n\\t\\t// \\\"target\\\" is an element that was clicked\\n\\t\\t_checkIfClose: function (target) {\\n\\n\\t\\t\\tif ($(target).hasClass(PREVENT_CLOSE_CLASS)) {\\n\\t\\t\\t\\treturn;\\n\\t\\t\\t}\\n\\n\\t\\t\\tvar closeOnContent = mfp.st.closeOnContentClick;\\n\\t\\t\\tvar closeOnBg = mfp.st.closeOnBgClick;\\n\\n\\t\\t\\tif (closeOnContent && closeOnBg) {\\n\\t\\t\\t\\treturn true;\\n\\t\\t\\t} else {\\n\\n\\t\\t\\t\\t// We close the popup if click is on close button or on preloader. Or if there is no content.\\n\\t\\t\\t\\tif (!mfp.content || $(target).hasClass('mfp-close') || (mfp.preloader && target === mfp.preloader[0])) {\\n\\t\\t\\t\\t\\treturn true;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// if click is outside the content\\n\\t\\t\\t\\tif ((target !== mfp.content[0] && !$.contains(mfp.content[0], target))) {\\n\\t\\t\\t\\t\\tif (closeOnBg) {\\n\\t\\t\\t\\t\\t\\t// last check, if the clicked element is in DOM, (in case it's removed onclick)\\n\\t\\t\\t\\t\\t\\tif ($.contains(document, target)) {\\n\\t\\t\\t\\t\\t\\t\\treturn true;\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t} else if (closeOnContent) {\\n\\t\\t\\t\\t\\treturn true;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t}\\n\\t\\t\\treturn false;\\n\\t\\t},\\n\\t\\t_addClassToMFP: function (cName) {\\n\\t\\t\\tmfp.bgOverlay.addClass(cName);\\n\\t\\t\\tmfp.wrap.addClass(cName);\\n\\t\\t},\\n\\t\\t_removeClassFromMFP: function (cName) {\\n\\t\\t\\tthis.bgOverlay.removeClass(cName);\\n\\t\\t\\tmfp.wrap.removeClass(cName);\\n\\t\\t},\\n\\t\\t_hasScrollBar: function (winHeight) {\\n\\t\\t\\treturn ((mfp.isIE7 ? _document.height() : document.body.scrollHeight) > (winHeight || _window.height()));\\n\\t\\t},\\n\\t\\t_setFocus: function () {\\n\\t\\t\\t(mfp.st.focus ? mfp.content.find(mfp.st.focus).eq(0) : mfp.wrap).focus();\\n\\t\\t},\\n\\t\\t_onFocusIn: function (e) {\\n\\t\\t\\tif (e.target !== mfp.wrap[0] && !$.contains(mfp.wrap[0], e.target)) {\\n\\t\\t\\t\\tmfp._setFocus();\\n\\t\\t\\t\\treturn false;\\n\\t\\t\\t}\\n\\t\\t},\\n\\t\\t_parseMarkup: function (template, values, item) {\\n\\t\\t\\tvar arr;\\n\\t\\t\\tif (item.data) {\\n\\t\\t\\t\\tvalues = $.extend(item.data, values);\\n\\t\\t\\t}\\n\\t\\t\\t_mfpTrigger(MARKUP_PARSE_EVENT, [template, values, item]);\\n\\n\\t\\t\\t$.each(values, function (key, value) {\\n\\t\\t\\t\\tif (value === undefined || value === false) {\\n\\t\\t\\t\\t\\treturn true;\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\tarr = key.split('_');\\n\\t\\t\\t\\tif (arr.length > 1) {\\n\\t\\t\\t\\t\\tvar el = template.find(EVENT_NS + '-' + arr[0]);\\n\\n\\t\\t\\t\\t\\tif (el.length > 0) {\\n\\t\\t\\t\\t\\t\\tvar attr = arr[1];\\n\\t\\t\\t\\t\\t\\tif (attr === 'replaceWith') {\\n\\t\\t\\t\\t\\t\\t\\tif (el[0] !== value[0]) {\\n\\t\\t\\t\\t\\t\\t\\t\\tel.replaceWith(value);\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t} else if (attr === 'img') {\\n\\t\\t\\t\\t\\t\\t\\tif (el.is('img')) {\\n\\t\\t\\t\\t\\t\\t\\t\\tel.attr('src', value);\\n\\t\\t\\t\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t\\t\\t\\tel.replaceWith($('').attr('src', value).attr('class', el.attr('class')));\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t\\t\\tel.attr(arr[1], value);\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\ttemplate.find(EVENT_NS + '-' + key).html(value);\\n\\t\\t\\t\\t}\\n\\t\\t\\t});\\n\\t\\t},\\n\\n\\t\\t_getScrollbarSize: function () {\\n\\t\\t\\t// thx David\\n\\t\\t\\tif (mfp.scrollbarSize === undefined) {\\n\\t\\t\\t\\tvar scrollDiv = document.createElement(\\\"div\\\");\\n\\t\\t\\t\\tscrollDiv.style.cssText = 'width: 99px; height: 99px; overflow: scroll; position: absolute; top: -9999px;';\\n\\t\\t\\t\\tdocument.body.appendChild(scrollDiv);\\n\\t\\t\\t\\tmfp.scrollbarSize = scrollDiv.offsetWidth - scrollDiv.clientWidth;\\n\\t\\t\\t\\tdocument.body.removeChild(scrollDiv);\\n\\t\\t\\t}\\n\\t\\t\\treturn mfp.scrollbarSize;\\n\\t\\t}\\n\\n\\t}; /* MagnificPopup core prototype end */\\n\\n\\n\\n\\n\\t/**\\n\\t * Public static functions\\n\\t */\\n\\t$.magnificPopup = {\\n\\t\\tinstance: null,\\n\\t\\tproto: MagnificPopup.prototype,\\n\\t\\tmodules: [],\\n\\n\\t\\topen: function (options, index) {\\n\\t\\t\\t_checkInstance();\\n\\n\\t\\t\\tif (!options) {\\n\\t\\t\\t\\toptions = {};\\n\\t\\t\\t} else {\\n\\t\\t\\t\\toptions = $.extend(true, {}, options);\\n\\t\\t\\t}\\n\\n\\t\\t\\toptions.isObj = true;\\n\\t\\t\\toptions.index = index || 0;\\n\\t\\t\\treturn this.instance.open(options);\\n\\t\\t},\\n\\n\\t\\tclose: function () {\\n\\t\\t\\treturn $.magnificPopup.instance && $.magnificPopup.instance.close();\\n\\t\\t},\\n\\n\\t\\tregisterModule: function (name, module) {\\n\\t\\t\\tif (module.options) {\\n\\t\\t\\t\\t$.magnificPopup.defaults[name] = module.options;\\n\\t\\t\\t}\\n\\t\\t\\t$.extend(this.proto, module.proto);\\n\\t\\t\\tthis.modules.push(name);\\n\\t\\t},\\n\\n\\t\\tdefaults: {\\n\\n\\t\\t\\t// Info about options is in docs:\\n\\t\\t\\t// http://dimsemenov.com/plugins/magnific-popup/documentation.html#options\\n\\n\\t\\t\\tdisableOn: 0,\\n\\n\\t\\t\\tkey: null,\\n\\n\\t\\t\\tmidClick: false,\\n\\n\\t\\t\\tmainClass: '',\\n\\n\\t\\t\\tpreloader: true,\\n\\n\\t\\t\\tfocus: '', // CSS selector of input to focus after popup is opened\\n\\n\\t\\t\\tcloseOnContentClick: false,\\n\\n\\t\\t\\tcloseOnBgClick: true,\\n\\n\\t\\t\\tcloseBtnInside: true,\\n\\n\\t\\t\\tshowCloseBtn: true,\\n\\n\\t\\t\\tenableEscapeKey: true,\\n\\n\\t\\t\\tmodal: false,\\n\\n\\t\\t\\talignTop: false,\\n\\n\\t\\t\\tremovalDelay: 0,\\n\\n\\t\\t\\tprependTo: null,\\n\\n\\t\\t\\tfixedContentPos: 'auto',\\n\\n\\t\\t\\tfixedBgPos: 'auto',\\n\\n\\t\\t\\toverflowY: 'auto',\\n\\n\\t\\t\\tcloseMarkup: '',\\n\\n\\t\\t\\ttClose: 'Close (Esc)',\\n\\n\\t\\t\\ttLoading: 'Loading...',\\n\\n\\t\\t\\tautoFocusLast: true\\n\\n\\t\\t}\\n\\t};\\n\\n\\n\\n\\t$.fn.magnificPopup = function (options) {\\n\\t\\t_checkInstance();\\n\\n\\t\\tvar jqEl = $(this);\\n\\n\\t\\t// We call some API method of first param is a string\\n\\t\\tif (typeof options === \\\"string\\\") {\\n\\n\\t\\t\\tif (options === 'open') {\\n\\t\\t\\t\\tvar items,\\n\\t\\t\\t\\t\\titemOpts = _isJQ ? jqEl.data('magnificPopup') : jqEl[0].magnificPopup,\\n\\t\\t\\t\\t\\tindex = parseInt(arguments[1], 10) || 0;\\n\\n\\t\\t\\t\\tif (itemOpts.items) {\\n\\t\\t\\t\\t\\titems = itemOpts.items[index];\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\titems = jqEl;\\n\\t\\t\\t\\t\\tif (itemOpts.delegate) {\\n\\t\\t\\t\\t\\t\\titems = items.find(itemOpts.delegate);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\titems = items.eq(index);\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\tmfp._openClick({ mfpEl: items }, jqEl, itemOpts);\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tif (mfp.isOpen)\\n\\t\\t\\t\\t\\tmfp[options].apply(mfp, Array.prototype.slice.call(arguments, 1));\\n\\t\\t\\t}\\n\\n\\t\\t} else {\\n\\t\\t\\t// clone options obj\\n\\t\\t\\toptions = $.extend(true, {}, options);\\n\\n\\t\\t\\t/*\\n\\t\\t\\t * As Zepto doesn't support .data() method for objects\\n\\t\\t\\t * and it works only in normal browsers\\n\\t\\t\\t * we assign \\\"options\\\" object directly to the DOM element. FTW!\\n\\t\\t\\t */\\n\\t\\t\\tif (_isJQ) {\\n\\t\\t\\t\\tjqEl.data('magnificPopup', options);\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tjqEl[0].magnificPopup = options;\\n\\t\\t\\t}\\n\\n\\t\\t\\tmfp.addGroup(jqEl, options);\\n\\n\\t\\t}\\n\\t\\treturn jqEl;\\n\\t};\\n\\n\\t/*>>core*/\\n\\n\\t/*>>inline*/\\n\\n\\tvar INLINE_NS = 'inline',\\n\\t\\t_hiddenClass,\\n\\t\\t_inlinePlaceholder,\\n\\t\\t_lastInlineElement,\\n\\t\\t_putInlineElementsBack = function () {\\n\\t\\t\\tif (_lastInlineElement) {\\n\\t\\t\\t\\t_inlinePlaceholder.after(_lastInlineElement.addClass(_hiddenClass)).detach();\\n\\t\\t\\t\\t_lastInlineElement = null;\\n\\t\\t\\t}\\n\\t\\t};\\n\\n\\t$.magnificPopup.registerModule(INLINE_NS, {\\n\\t\\toptions: {\\n\\t\\t\\thiddenClass: 'hide', // will be appended with `mfp-` prefix\\n\\t\\t\\tmarkup: '',\\n\\t\\t\\ttNotFound: 'Content not found'\\n\\t\\t},\\n\\t\\tproto: {\\n\\n\\t\\t\\tinitInline: function () {\\n\\t\\t\\t\\tmfp.types.push(INLINE_NS);\\n\\n\\t\\t\\t\\t_mfpOn(CLOSE_EVENT + '.' + INLINE_NS, function () {\\n\\t\\t\\t\\t\\t_putInlineElementsBack();\\n\\t\\t\\t\\t});\\n\\t\\t\\t},\\n\\n\\t\\t\\tgetInline: function (item, template) {\\n\\n\\t\\t\\t\\t_putInlineElementsBack();\\n\\n\\t\\t\\t\\tif (item.src) {\\n\\t\\t\\t\\t\\tvar inlineSt = mfp.st.inline,\\n\\t\\t\\t\\t\\t\\tel = $(item.src);\\n\\n\\t\\t\\t\\t\\tif (el.length) {\\n\\n\\t\\t\\t\\t\\t\\t// If target element has parent - we replace it with placeholder and put it back after popup is closed\\n\\t\\t\\t\\t\\t\\tvar parent = el[0].parentNode;\\n\\t\\t\\t\\t\\t\\tif (parent && parent.tagName) {\\n\\t\\t\\t\\t\\t\\t\\tif (!_inlinePlaceholder) {\\n\\t\\t\\t\\t\\t\\t\\t\\t_hiddenClass = inlineSt.hiddenClass;\\n\\t\\t\\t\\t\\t\\t\\t\\t_inlinePlaceholder = _getEl(_hiddenClass);\\n\\t\\t\\t\\t\\t\\t\\t\\t_hiddenClass = 'mfp-' + _hiddenClass;\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t\\t// replace target inline element with placeholder\\n\\t\\t\\t\\t\\t\\t\\t_lastInlineElement = el.after(_inlinePlaceholder).detach().removeClass(_hiddenClass);\\n\\t\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\t\\tmfp.updateStatus('ready');\\n\\t\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t\\tmfp.updateStatus('error', inlineSt.tNotFound);\\n\\t\\t\\t\\t\\t\\tel = $('
');\\n\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\titem.inlineElement = el;\\n\\t\\t\\t\\t\\treturn el;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\tmfp.updateStatus('ready');\\n\\t\\t\\t\\tmfp._parseMarkup(template, {}, item);\\n\\t\\t\\t\\treturn template;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t});\\n\\n\\t/*>>inline*/\\n\\n\\t/*>>ajax*/\\n\\tvar AJAX_NS = 'ajax',\\n\\t\\t_ajaxCur,\\n\\t\\t_removeAjaxCursor = function () {\\n\\t\\t\\tif (_ajaxCur) {\\n\\t\\t\\t\\t$(document.body).removeClass(_ajaxCur);\\n\\t\\t\\t}\\n\\t\\t},\\n\\t\\t_destroyAjaxRequest = function () {\\n\\t\\t\\t_removeAjaxCursor();\\n\\t\\t\\tif (mfp.req) {\\n\\t\\t\\t\\tmfp.req.abort();\\n\\t\\t\\t}\\n\\t\\t};\\n\\n\\t$.magnificPopup.registerModule(AJAX_NS, {\\n\\n\\t\\toptions: {\\n\\t\\t\\tsettings: null,\\n\\t\\t\\tcursor: 'mfp-ajax-cur',\\n\\t\\t\\ttError: 'The content could not be loaded.'\\n\\t\\t},\\n\\n\\t\\tproto: {\\n\\t\\t\\tinitAjax: function () {\\n\\t\\t\\t\\tmfp.types.push(AJAX_NS);\\n\\t\\t\\t\\t_ajaxCur = mfp.st.ajax.cursor;\\n\\n\\t\\t\\t\\t_mfpOn(CLOSE_EVENT + '.' + AJAX_NS, _destroyAjaxRequest);\\n\\t\\t\\t\\t_mfpOn('BeforeChange.' + AJAX_NS, _destroyAjaxRequest);\\n\\t\\t\\t},\\n\\t\\t\\tgetAjax: function (item) {\\n\\n\\t\\t\\t\\tif (_ajaxCur) {\\n\\t\\t\\t\\t\\t$(document.body).addClass(_ajaxCur);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\tmfp.updateStatus('loading');\\n\\n\\t\\t\\t\\tvar opts = $.extend({\\n\\t\\t\\t\\t\\turl: item.src,\\n\\t\\t\\t\\t\\tsuccess: function (data, textStatus, jqXHR) {\\n\\t\\t\\t\\t\\t\\tvar temp = {\\n\\t\\t\\t\\t\\t\\t\\tdata: data,\\n\\t\\t\\t\\t\\t\\t\\txhr: jqXHR\\n\\t\\t\\t\\t\\t\\t};\\n\\n\\t\\t\\t\\t\\t\\t_mfpTrigger('ParseAjax', temp);\\n\\n\\t\\t\\t\\t\\t\\tmfp.appendContent($(temp.data), AJAX_NS);\\n\\n\\t\\t\\t\\t\\t\\titem.finished = true;\\n\\n\\t\\t\\t\\t\\t\\t_removeAjaxCursor();\\n\\n\\t\\t\\t\\t\\t\\tmfp._setFocus();\\n\\n\\t\\t\\t\\t\\t\\tsetTimeout(function () {\\n\\t\\t\\t\\t\\t\\t\\tmfp.wrap.addClass(READY_CLASS);\\n\\t\\t\\t\\t\\t\\t}, 16);\\n\\n\\t\\t\\t\\t\\t\\tmfp.updateStatus('ready');\\n\\n\\t\\t\\t\\t\\t\\t_mfpTrigger('AjaxContentAdded');\\n\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\terror: function () {\\n\\t\\t\\t\\t\\t\\t_removeAjaxCursor();\\n\\t\\t\\t\\t\\t\\titem.finished = item.loadError = true;\\n\\t\\t\\t\\t\\t\\tmfp.updateStatus('error', mfp.st.ajax.tError.replace('%url%', item.src));\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}, mfp.st.ajax.settings);\\n\\n\\t\\t\\t\\tmfp.req = $.ajax(opts);\\n\\n\\t\\t\\t\\treturn '';\\n\\t\\t\\t}\\n\\t\\t}\\n\\t});\\n\\n\\t/*>>ajax*/\\n\\n\\t/*>>image*/\\n\\tvar _imgInterval,\\n\\t\\t_getTitle = function (item) {\\n\\t\\t\\tif (item.data && item.data.title !== undefined)\\n\\t\\t\\t\\treturn item.data.title;\\n\\n\\t\\t\\tvar src = mfp.st.image.titleSrc;\\n\\n\\t\\t\\tif (src) {\\n\\t\\t\\t\\tif ($.isFunction(src)) {\\n\\t\\t\\t\\t\\treturn src.call(mfp, item);\\n\\t\\t\\t\\t} else if (item.el) {\\n\\t\\t\\t\\t\\treturn item.el.attr(src) || '';\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t\\treturn '';\\n\\t\\t};\\n\\n\\t$.magnificPopup.registerModule('image', {\\n\\n\\t\\toptions: {\\n\\t\\t\\tmarkup: '
' +\\n\\t\\t\\t\\t'
' +\\n\\t\\t\\t\\t'
' +\\n\\t\\t\\t\\t'
' +\\n\\t\\t\\t\\t'
' +\\n\\t\\t\\t\\t'
' +\\n\\t\\t\\t\\t'
' +\\n\\t\\t\\t\\t'
' +\\n\\t\\t\\t\\t'
' +\\n\\t\\t\\t\\t'
' +\\n\\t\\t\\t\\t'
' +\\n\\t\\t\\t\\t'
',\\n\\t\\t\\tcursor: 'mfp-zoom-out-cur',\\n\\t\\t\\ttitleSrc: 'title',\\n\\t\\t\\tverticalFit: true,\\n\\t\\t\\ttError: 'The image could not be loaded.'\\n\\t\\t},\\n\\n\\t\\tproto: {\\n\\t\\t\\tinitImage: function () {\\n\\t\\t\\t\\tvar imgSt = mfp.st.image,\\n\\t\\t\\t\\t\\tns = '.image';\\n\\n\\t\\t\\t\\tmfp.types.push('image');\\n\\n\\t\\t\\t\\t_mfpOn(OPEN_EVENT + ns, function () {\\n\\t\\t\\t\\t\\tif (mfp.currItem.type === 'image' && imgSt.cursor) {\\n\\t\\t\\t\\t\\t\\t$(document.body).addClass(imgSt.cursor);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t});\\n\\n\\t\\t\\t\\t_mfpOn(CLOSE_EVENT + ns, function () {\\n\\t\\t\\t\\t\\tif (imgSt.cursor) {\\n\\t\\t\\t\\t\\t\\t$(document.body).removeClass(imgSt.cursor);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t_window.off('resize' + EVENT_NS);\\n\\t\\t\\t\\t});\\n\\n\\t\\t\\t\\t_mfpOn('Resize' + ns, mfp.resizeImage);\\n\\t\\t\\t\\tif (mfp.isLowIE) {\\n\\t\\t\\t\\t\\t_mfpOn('AfterChange', mfp.resizeImage);\\n\\t\\t\\t\\t}\\n\\t\\t\\t},\\n\\t\\t\\tresizeImage: function () {\\n\\t\\t\\t\\tvar item = mfp.currItem;\\n\\t\\t\\t\\tif (!item || !item.img) return;\\n\\n\\t\\t\\t\\tif (mfp.st.image.verticalFit) {\\n\\t\\t\\t\\t\\tvar decr = 0;\\n\\t\\t\\t\\t\\t// fix box-sizing in ie7/8\\n\\t\\t\\t\\t\\tif (mfp.isLowIE) {\\n\\t\\t\\t\\t\\t\\tdecr = parseInt(item.img.css('padding-top'), 10) + parseInt(item.img.css('padding-bottom'), 10);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\titem.img.css('max-height', mfp.wH - decr);\\n\\t\\t\\t\\t}\\n\\t\\t\\t},\\n\\t\\t\\t_onImageHasSize: function (item) {\\n\\t\\t\\t\\tif (item.img) {\\n\\n\\t\\t\\t\\t\\titem.hasSize = true;\\n\\n\\t\\t\\t\\t\\tif (_imgInterval) {\\n\\t\\t\\t\\t\\t\\tclearInterval(_imgInterval);\\n\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\titem.isCheckingImgSize = false;\\n\\n\\t\\t\\t\\t\\t_mfpTrigger('ImageHasSize', item);\\n\\n\\t\\t\\t\\t\\tif (item.imgHidden) {\\n\\t\\t\\t\\t\\t\\tif (mfp.content)\\n\\t\\t\\t\\t\\t\\t\\tmfp.content.removeClass('mfp-loading');\\n\\n\\t\\t\\t\\t\\t\\titem.imgHidden = false;\\n\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t}\\n\\t\\t\\t},\\n\\n\\t\\t\\t/**\\n\\t\\t\\t * Function that loops until the image has size to display elements that rely on it asap\\n\\t\\t\\t */\\n\\t\\t\\tfindImageSize: function (item) {\\n\\n\\t\\t\\t\\tvar counter = 0,\\n\\t\\t\\t\\t\\timg = item.img[0],\\n\\t\\t\\t\\t\\tmfpSetInterval = function (delay) {\\n\\n\\t\\t\\t\\t\\t\\tif (_imgInterval) {\\n\\t\\t\\t\\t\\t\\t\\tclearInterval(_imgInterval);\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t// decelerating interval that checks for size of an image\\n\\t\\t\\t\\t\\t\\t_imgInterval = setInterval(function () {\\n\\t\\t\\t\\t\\t\\t\\tif (img.naturalWidth > 0) {\\n\\t\\t\\t\\t\\t\\t\\t\\tmfp._onImageHasSize(item);\\n\\t\\t\\t\\t\\t\\t\\t\\treturn;\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\t\\t\\tif (counter > 200) {\\n\\t\\t\\t\\t\\t\\t\\t\\tclearInterval(_imgInterval);\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\t\\t\\tcounter++;\\n\\t\\t\\t\\t\\t\\t\\tif (counter === 3) {\\n\\t\\t\\t\\t\\t\\t\\t\\tmfpSetInterval(10);\\n\\t\\t\\t\\t\\t\\t\\t} else if (counter === 40) {\\n\\t\\t\\t\\t\\t\\t\\t\\tmfpSetInterval(50);\\n\\t\\t\\t\\t\\t\\t\\t} else if (counter === 100) {\\n\\t\\t\\t\\t\\t\\t\\t\\tmfpSetInterval(500);\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t}, delay);\\n\\t\\t\\t\\t\\t};\\n\\n\\t\\t\\t\\tmfpSetInterval(1);\\n\\t\\t\\t},\\n\\n\\t\\t\\tgetImage: function (item, template) {\\n\\n\\t\\t\\t\\tvar guard = 0,\\n\\n\\t\\t\\t\\t\\t// image load complete handler\\n\\t\\t\\t\\t\\tonLoadComplete = function () {\\n\\t\\t\\t\\t\\t\\tif (item) {\\n\\t\\t\\t\\t\\t\\t\\tif (item.img[0].complete) {\\n\\t\\t\\t\\t\\t\\t\\t\\titem.img.off('.mfploader');\\n\\n\\t\\t\\t\\t\\t\\t\\t\\tif (item === mfp.currItem) {\\n\\t\\t\\t\\t\\t\\t\\t\\t\\tmfp._onImageHasSize(item);\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\tmfp.updateStatus('ready');\\n\\t\\t\\t\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\t\\t\\t\\titem.hasSize = true;\\n\\t\\t\\t\\t\\t\\t\\t\\titem.loaded = true;\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t_mfpTrigger('ImageLoadComplete');\\n\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t\\telse {\\n\\t\\t\\t\\t\\t\\t\\t\\t// if image complete check fails 200 times (20 sec), we assume that there was an error.\\n\\t\\t\\t\\t\\t\\t\\t\\tguard++;\\n\\t\\t\\t\\t\\t\\t\\t\\tif (guard < 200) {\\n\\t\\t\\t\\t\\t\\t\\t\\t\\tsetTimeout(onLoadComplete, 100);\\n\\t\\t\\t\\t\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t\\t\\t\\t\\tonLoadError();\\n\\t\\t\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t},\\n\\n\\t\\t\\t\\t\\t// image error handler\\n\\t\\t\\t\\t\\tonLoadError = function () {\\n\\t\\t\\t\\t\\t\\tif (item) {\\n\\t\\t\\t\\t\\t\\t\\titem.img.off('.mfploader');\\n\\t\\t\\t\\t\\t\\t\\tif (item === mfp.currItem) {\\n\\t\\t\\t\\t\\t\\t\\t\\tmfp._onImageHasSize(item);\\n\\t\\t\\t\\t\\t\\t\\t\\tmfp.updateStatus('error', imgSt.tError.replace('%url%', item.src));\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\t\\t\\titem.hasSize = true;\\n\\t\\t\\t\\t\\t\\t\\titem.loaded = true;\\n\\t\\t\\t\\t\\t\\t\\titem.loadError = true;\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\timgSt = mfp.st.image;\\n\\n\\n\\t\\t\\t\\tvar el = template.find('.mfp-img');\\n\\t\\t\\t\\tif (el.length) {\\n\\t\\t\\t\\t\\tvar img = document.createElement('img');\\n\\t\\t\\t\\t\\timg.className = 'mfp-img';\\n\\t\\t\\t\\t\\tif (item.el && item.el.find('img').length) {\\n\\t\\t\\t\\t\\t\\timg.alt = item.el.find('img').attr('alt');\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\titem.img = $(img).on('load.mfploader', onLoadComplete).on('error.mfploader', onLoadError);\\n\\t\\t\\t\\t\\timg.src = item.src;\\n\\n\\t\\t\\t\\t\\t// without clone() \\\"error\\\" event is not firing when IMG is replaced by new IMG\\n\\t\\t\\t\\t\\t// TODO: find a way to avoid such cloning\\n\\t\\t\\t\\t\\tif (el.is('img')) {\\n\\t\\t\\t\\t\\t\\titem.img = item.img.clone();\\n\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\timg = item.img[0];\\n\\t\\t\\t\\t\\tif (img.naturalWidth > 0) {\\n\\t\\t\\t\\t\\t\\titem.hasSize = true;\\n\\t\\t\\t\\t\\t} else if (!img.width) {\\n\\t\\t\\t\\t\\t\\titem.hasSize = false;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\tmfp._parseMarkup(template, {\\n\\t\\t\\t\\t\\ttitle: _getTitle(item),\\n\\t\\t\\t\\t\\timg_replaceWith: item.img\\n\\t\\t\\t\\t}, item);\\n\\n\\t\\t\\t\\tmfp.resizeImage();\\n\\n\\t\\t\\t\\tif (item.hasSize) {\\n\\t\\t\\t\\t\\tif (_imgInterval) clearInterval(_imgInterval);\\n\\n\\t\\t\\t\\t\\tif (item.loadError) {\\n\\t\\t\\t\\t\\t\\ttemplate.addClass('mfp-loading');\\n\\t\\t\\t\\t\\t\\tmfp.updateStatus('error', imgSt.tError.replace('%url%', item.src));\\n\\t\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t\\ttemplate.removeClass('mfp-loading');\\n\\t\\t\\t\\t\\t\\tmfp.updateStatus('ready');\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\treturn template;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\tmfp.updateStatus('loading');\\n\\t\\t\\t\\titem.loading = true;\\n\\n\\t\\t\\t\\tif (!item.hasSize) {\\n\\t\\t\\t\\t\\titem.imgHidden = true;\\n\\t\\t\\t\\t\\ttemplate.addClass('mfp-loading');\\n\\t\\t\\t\\t\\tmfp.findImageSize(item);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\treturn template;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t});\\n\\n\\t/*>>image*/\\n\\n\\t/*>>zoom*/\\n\\tvar hasMozTransform,\\n\\t\\tgetHasMozTransform = function () {\\n\\t\\t\\tif (hasMozTransform === undefined) {\\n\\t\\t\\t\\thasMozTransform = document.createElement('p').style.MozTransform !== undefined;\\n\\t\\t\\t}\\n\\t\\t\\treturn hasMozTransform;\\n\\t\\t};\\n\\n\\t$.magnificPopup.registerModule('zoom', {\\n\\n\\t\\toptions: {\\n\\t\\t\\tenabled: false,\\n\\t\\t\\teasing: 'ease-in-out',\\n\\t\\t\\tduration: 300,\\n\\t\\t\\topener: function (element) {\\n\\t\\t\\t\\treturn element.is('img') ? element : element.find('img');\\n\\t\\t\\t}\\n\\t\\t},\\n\\n\\t\\tproto: {\\n\\n\\t\\t\\tinitZoom: function () {\\n\\t\\t\\t\\tvar zoomSt = mfp.st.zoom,\\n\\t\\t\\t\\t\\tns = '.zoom',\\n\\t\\t\\t\\t\\timage;\\n\\n\\t\\t\\t\\tif (!zoomSt.enabled || !mfp.supportsTransition) {\\n\\t\\t\\t\\t\\treturn;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\tvar duration = zoomSt.duration,\\n\\t\\t\\t\\t\\tgetElToAnimate = function (image) {\\n\\t\\t\\t\\t\\t\\tvar newImg = image.clone().removeAttr('style').removeAttr('class').addClass('mfp-animated-image'),\\n\\t\\t\\t\\t\\t\\t\\ttransition = 'all ' + (zoomSt.duration / 1000) + 's ' + zoomSt.easing,\\n\\t\\t\\t\\t\\t\\t\\tcssObj = {\\n\\t\\t\\t\\t\\t\\t\\t\\tposition: 'fixed',\\n\\t\\t\\t\\t\\t\\t\\t\\tzIndex: 9999,\\n\\t\\t\\t\\t\\t\\t\\t\\tleft: 0,\\n\\t\\t\\t\\t\\t\\t\\t\\ttop: 0,\\n\\t\\t\\t\\t\\t\\t\\t\\t'-webkit-backface-visibility': 'hidden'\\n\\t\\t\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\t\\t\\tt = 'transition';\\n\\n\\t\\t\\t\\t\\t\\tcssObj['-webkit-' + t] = cssObj['-moz-' + t] = cssObj['-o-' + t] = cssObj[t] = transition;\\n\\n\\t\\t\\t\\t\\t\\tnewImg.css(cssObj);\\n\\t\\t\\t\\t\\t\\treturn newImg;\\n\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\tshowMainContent = function () {\\n\\t\\t\\t\\t\\t\\tmfp.content.css('visibility', 'visible');\\n\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\topenTimeout,\\n\\t\\t\\t\\t\\tanimatedImg;\\n\\n\\t\\t\\t\\t_mfpOn('BuildControls' + ns, function () {\\n\\t\\t\\t\\t\\tif (mfp._allowZoom()) {\\n\\n\\t\\t\\t\\t\\t\\tclearTimeout(openTimeout);\\n\\t\\t\\t\\t\\t\\tmfp.content.css('visibility', 'hidden');\\n\\n\\t\\t\\t\\t\\t\\t// Basically, all code below does is clones existing image, puts in on top of the current one and animated it\\n\\n\\t\\t\\t\\t\\t\\timage = mfp._getItemToZoom();\\n\\n\\t\\t\\t\\t\\t\\tif (!image) {\\n\\t\\t\\t\\t\\t\\t\\tshowMainContent();\\n\\t\\t\\t\\t\\t\\t\\treturn;\\n\\t\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\t\\tanimatedImg = getElToAnimate(image);\\n\\n\\t\\t\\t\\t\\t\\tanimatedImg.css(mfp._getOffset());\\n\\n\\t\\t\\t\\t\\t\\tmfp.wrap.append(animatedImg);\\n\\n\\t\\t\\t\\t\\t\\topenTimeout = setTimeout(function () {\\n\\t\\t\\t\\t\\t\\t\\tanimatedImg.css(mfp._getOffset(true));\\n\\t\\t\\t\\t\\t\\t\\topenTimeout = setTimeout(function () {\\n\\n\\t\\t\\t\\t\\t\\t\\t\\tshowMainContent();\\n\\n\\t\\t\\t\\t\\t\\t\\t\\tsetTimeout(function () {\\n\\t\\t\\t\\t\\t\\t\\t\\t\\tanimatedImg.remove();\\n\\t\\t\\t\\t\\t\\t\\t\\t\\timage = animatedImg = null;\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t_mfpTrigger('ZoomAnimationEnded');\\n\\t\\t\\t\\t\\t\\t\\t\\t}, 16); // avoid blink when switching images\\n\\n\\t\\t\\t\\t\\t\\t\\t}, duration); // this timeout equals animation duration\\n\\n\\t\\t\\t\\t\\t\\t}, 16); // by adding this timeout we avoid short glitch at the beginning of animation\\n\\n\\n\\t\\t\\t\\t\\t\\t// Lots of timeouts...\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t});\\n\\t\\t\\t\\t_mfpOn(BEFORE_CLOSE_EVENT + ns, function () {\\n\\t\\t\\t\\t\\tif (mfp._allowZoom()) {\\n\\n\\t\\t\\t\\t\\t\\tclearTimeout(openTimeout);\\n\\n\\t\\t\\t\\t\\t\\tmfp.st.removalDelay = duration;\\n\\n\\t\\t\\t\\t\\t\\tif (!image) {\\n\\t\\t\\t\\t\\t\\t\\timage = mfp._getItemToZoom();\\n\\t\\t\\t\\t\\t\\t\\tif (!image) {\\n\\t\\t\\t\\t\\t\\t\\t\\treturn;\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t\\tanimatedImg = getElToAnimate(image);\\n\\t\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\t\\tanimatedImg.css(mfp._getOffset(true));\\n\\t\\t\\t\\t\\t\\tmfp.wrap.append(animatedImg);\\n\\t\\t\\t\\t\\t\\tmfp.content.css('visibility', 'hidden');\\n\\n\\t\\t\\t\\t\\t\\tsetTimeout(function () {\\n\\t\\t\\t\\t\\t\\t\\tanimatedImg.css(mfp._getOffset());\\n\\t\\t\\t\\t\\t\\t}, 16);\\n\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t});\\n\\n\\t\\t\\t\\t_mfpOn(CLOSE_EVENT + ns, function () {\\n\\t\\t\\t\\t\\tif (mfp._allowZoom()) {\\n\\t\\t\\t\\t\\t\\tshowMainContent();\\n\\t\\t\\t\\t\\t\\tif (animatedImg) {\\n\\t\\t\\t\\t\\t\\t\\tanimatedImg.remove();\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\timage = null;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t});\\n\\t\\t\\t},\\n\\n\\t\\t\\t_allowZoom: function () {\\n\\t\\t\\t\\treturn mfp.currItem.type === 'image';\\n\\t\\t\\t},\\n\\n\\t\\t\\t_getItemToZoom: function () {\\n\\t\\t\\t\\tif (mfp.currItem.hasSize) {\\n\\t\\t\\t\\t\\treturn mfp.currItem.img;\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\treturn false;\\n\\t\\t\\t\\t}\\n\\t\\t\\t},\\n\\n\\t\\t\\t// Get element postion relative to viewport\\n\\t\\t\\t_getOffset: function (isLarge) {\\n\\t\\t\\t\\tvar el;\\n\\t\\t\\t\\tif (isLarge) {\\n\\t\\t\\t\\t\\tel = mfp.currItem.img;\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\tel = mfp.st.zoom.opener(mfp.currItem.el || mfp.currItem);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\tvar offset = el.offset();\\n\\t\\t\\t\\tvar paddingTop = parseInt(el.css('padding-top'), 10);\\n\\t\\t\\t\\tvar paddingBottom = parseInt(el.css('padding-bottom'), 10);\\n\\t\\t\\t\\toffset.top -= ($(window).scrollTop() - paddingTop);\\n\\n\\n\\t\\t\\t\\t/*\\n\\t\\n\\t\\t\\t\\tAnimating left + top + width/height looks glitchy in Firefox, but perfect in Chrome. And vice-versa.\\n\\t\\n\\t\\t\\t\\t */\\n\\t\\t\\t\\tvar obj = {\\n\\t\\t\\t\\t\\twidth: el.width(),\\n\\t\\t\\t\\t\\t// fix Zepto height+padding issue\\n\\t\\t\\t\\t\\theight: (_isJQ ? el.innerHeight() : el[0].offsetHeight) - paddingBottom - paddingTop\\n\\t\\t\\t\\t};\\n\\n\\t\\t\\t\\t// I hate to do this, but there is no another option\\n\\t\\t\\t\\tif (getHasMozTransform()) {\\n\\t\\t\\t\\t\\tobj['-moz-transform'] = obj['transform'] = 'translate(' + offset.left + 'px,' + offset.top + 'px)';\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\tobj.left = offset.left;\\n\\t\\t\\t\\t\\tobj.top = offset.top;\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\treturn obj;\\n\\t\\t\\t}\\n\\n\\t\\t}\\n\\t});\\n\\n\\n\\n\\t/*>>zoom*/\\n\\n\\t/*>>iframe*/\\n\\n\\tvar IFRAME_NS = 'iframe',\\n\\t\\t_emptyPage = '//about:blank',\\n\\n\\t\\t_fixIframeBugs = function (isShowing) {\\n\\t\\t\\tif (mfp.currTemplate[IFRAME_NS]) {\\n\\t\\t\\t\\tvar el = mfp.currTemplate[IFRAME_NS].find('iframe');\\n\\t\\t\\t\\tif (el.length) {\\n\\t\\t\\t\\t\\t// reset src after the popup is closed to avoid \\\"video keeps playing after popup is closed\\\" bug\\n\\t\\t\\t\\t\\tif (!isShowing) {\\n\\t\\t\\t\\t\\t\\tel[0].src = _emptyPage;\\n\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\t// IE8 black screen bug fix\\n\\t\\t\\t\\t\\tif (mfp.isIE8) {\\n\\t\\t\\t\\t\\t\\tel.css('display', isShowing ? 'block' : 'none');\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t};\\n\\n\\t$.magnificPopup.registerModule(IFRAME_NS, {\\n\\n\\t\\toptions: {\\n\\t\\t\\tmarkup: '
' +\\n\\t\\t\\t\\t'
' +\\n\\t\\t\\t\\t'' +\\n\\t\\t\\t\\t'
',\\n\\n\\t\\t\\tsrcAction: 'iframe_src',\\n\\n\\t\\t\\t// we don't care and support only one default type of URL by default\\n\\t\\t\\tpatterns: {\\n\\t\\t\\t\\tyoutube: {\\n\\t\\t\\t\\t\\tindex: 'youtube.com',\\n\\t\\t\\t\\t\\tid: 'v=',\\n\\t\\t\\t\\t\\tsrc: '//www.youtube.com/embed/%id%?autoplay=1'\\n\\t\\t\\t\\t},\\n\\t\\t\\t\\tvimeo: {\\n\\t\\t\\t\\t\\tindex: 'vimeo.com/',\\n\\t\\t\\t\\t\\tid: '/',\\n\\t\\t\\t\\t\\tsrc: '//player.vimeo.com/video/%id%?autoplay=1'\\n\\t\\t\\t\\t},\\n\\t\\t\\t\\tgmaps: {\\n\\t\\t\\t\\t\\tindex: '//maps.google.',\\n\\t\\t\\t\\t\\tsrc: '%id%&output=embed'\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t},\\n\\n\\t\\tproto: {\\n\\t\\t\\tinitIframe: function () {\\n\\t\\t\\t\\tmfp.types.push(IFRAME_NS);\\n\\n\\t\\t\\t\\t_mfpOn('BeforeChange', function (e, prevType, newType) {\\n\\t\\t\\t\\t\\tif (prevType !== newType) {\\n\\t\\t\\t\\t\\t\\tif (prevType === IFRAME_NS) {\\n\\t\\t\\t\\t\\t\\t\\t_fixIframeBugs(); // iframe if removed\\n\\t\\t\\t\\t\\t\\t} else if (newType === IFRAME_NS) {\\n\\t\\t\\t\\t\\t\\t\\t_fixIframeBugs(true); // iframe is showing\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t}// else {\\n\\t\\t\\t\\t\\t// iframe source is switched, don't do anything\\n\\t\\t\\t\\t\\t//}\\n\\t\\t\\t\\t});\\n\\n\\t\\t\\t\\t_mfpOn(CLOSE_EVENT + '.' + IFRAME_NS, function () {\\n\\t\\t\\t\\t\\t_fixIframeBugs();\\n\\t\\t\\t\\t});\\n\\t\\t\\t},\\n\\n\\t\\t\\tgetIframe: function (item, template) {\\n\\t\\t\\t\\tvar embedSrc = item.src;\\n\\t\\t\\t\\tvar iframeSt = mfp.st.iframe;\\n\\n\\t\\t\\t\\t$.each(iframeSt.patterns, function () {\\n\\t\\t\\t\\t\\tif (embedSrc.indexOf(this.index) > -1) {\\n\\t\\t\\t\\t\\t\\tif (this.id) {\\n\\t\\t\\t\\t\\t\\t\\tif (typeof this.id === 'string') {\\n\\t\\t\\t\\t\\t\\t\\t\\tembedSrc = embedSrc.substr(embedSrc.lastIndexOf(this.id) + this.id.length, embedSrc.length);\\n\\t\\t\\t\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t\\t\\t\\tembedSrc = this.id.call(this, embedSrc);\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\tembedSrc = this.src.replace('%id%', embedSrc);\\n\\t\\t\\t\\t\\t\\treturn false; // break;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t});\\n\\n\\t\\t\\t\\tvar dataObj = {};\\n\\t\\t\\t\\tif (iframeSt.srcAction) {\\n\\t\\t\\t\\t\\tdataObj[iframeSt.srcAction] = embedSrc;\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\tmfp._parseMarkup(template, dataObj, item);\\n\\n\\t\\t\\t\\tmfp.updateStatus('ready');\\n\\n\\t\\t\\t\\treturn template;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t});\\n\\n\\n\\n\\t/*>>iframe*/\\n\\n\\t/*>>gallery*/\\n\\t/**\\n\\t * Get looped index depending on number of slides\\n\\t */\\n\\tvar _getLoopedId = function (index) {\\n\\t\\tvar numSlides = mfp.items.length;\\n\\t\\tif (index > numSlides - 1) {\\n\\t\\t\\treturn index - numSlides;\\n\\t\\t} else if (index < 0) {\\n\\t\\t\\treturn numSlides + index;\\n\\t\\t}\\n\\t\\treturn index;\\n\\t},\\n\\t\\t_replaceCurrTotal = function (text, curr, total) {\\n\\t\\t\\treturn text.replace(/%curr%/gi, curr + 1).replace(/%total%/gi, total);\\n\\t\\t};\\n\\n\\t$.magnificPopup.registerModule('gallery', {\\n\\n\\t\\toptions: {\\n\\t\\t\\tenabled: false,\\n\\t\\t\\tarrowMarkup: '',\\n\\t\\t\\tpreload: [0, 2],\\n\\t\\t\\tnavigateByImgClick: true,\\n\\t\\t\\tarrows: true,\\n\\n\\t\\t\\ttPrev: 'Previous (Left arrow key)',\\n\\t\\t\\ttNext: 'Next (Right arrow key)',\\n\\t\\t\\ttCounter: '%curr% of %total%'\\n\\t\\t},\\n\\n\\t\\tproto: {\\n\\t\\t\\tinitGallery: function () {\\n\\n\\t\\t\\t\\tvar gSt = mfp.st.gallery,\\n\\t\\t\\t\\t\\tns = '.mfp-gallery';\\n\\n\\t\\t\\t\\tmfp.direction = true; // true - next, false - prev\\n\\n\\t\\t\\t\\tif (!gSt || !gSt.enabled) return false;\\n\\n\\t\\t\\t\\t_wrapClasses += ' mfp-gallery';\\n\\n\\t\\t\\t\\t_mfpOn(OPEN_EVENT + ns, function () {\\n\\n\\t\\t\\t\\t\\tif (gSt.navigateByImgClick) {\\n\\t\\t\\t\\t\\t\\tmfp.wrap.on('click' + ns, '.mfp-img', function () {\\n\\t\\t\\t\\t\\t\\t\\tif (mfp.items.length > 1) {\\n\\t\\t\\t\\t\\t\\t\\t\\tmfp.next();\\n\\t\\t\\t\\t\\t\\t\\t\\treturn false;\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t});\\n\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\t_document.on('keydown' + ns, function (e) {\\n\\t\\t\\t\\t\\t\\tif (e.keyCode === 37) {\\n\\t\\t\\t\\t\\t\\t\\tmfp.prev();\\n\\t\\t\\t\\t\\t\\t} else if (e.keyCode === 39) {\\n\\t\\t\\t\\t\\t\\t\\tmfp.next();\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t});\\n\\t\\t\\t\\t});\\n\\n\\t\\t\\t\\t_mfpOn('UpdateStatus' + ns, function (e, data) {\\n\\t\\t\\t\\t\\tif (data.text) {\\n\\t\\t\\t\\t\\t\\tdata.text = _replaceCurrTotal(data.text, mfp.currItem.index, mfp.items.length);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t});\\n\\n\\t\\t\\t\\t_mfpOn(MARKUP_PARSE_EVENT + ns, function (e, element, values, item) {\\n\\t\\t\\t\\t\\tvar l = mfp.items.length;\\n\\t\\t\\t\\t\\tvalues.counter = l > 1 ? _replaceCurrTotal(gSt.tCounter, item.index, l) : '';\\n\\t\\t\\t\\t});\\n\\n\\t\\t\\t\\t_mfpOn('BuildControls' + ns, function () {\\n\\t\\t\\t\\t\\tif (mfp.items.length > 1 && gSt.arrows && !mfp.arrowLeft) {\\n\\t\\t\\t\\t\\t\\tvar markup = gSt.arrowMarkup,\\n\\t\\t\\t\\t\\t\\t\\tarrowLeft = mfp.arrowLeft = $(markup.replace(/%title%/gi, gSt.tPrev).replace(/%dir%/gi, 'left')).addClass(PREVENT_CLOSE_CLASS),\\n\\t\\t\\t\\t\\t\\t\\tarrowRight = mfp.arrowRight = $(markup.replace(/%title%/gi, gSt.tNext).replace(/%dir%/gi, 'right')).addClass(PREVENT_CLOSE_CLASS);\\n\\n\\t\\t\\t\\t\\t\\tarrowLeft.click(function () {\\n\\t\\t\\t\\t\\t\\t\\tmfp.prev();\\n\\t\\t\\t\\t\\t\\t});\\n\\t\\t\\t\\t\\t\\tarrowRight.click(function () {\\n\\t\\t\\t\\t\\t\\t\\tmfp.next();\\n\\t\\t\\t\\t\\t\\t});\\n\\n\\t\\t\\t\\t\\t\\tmfp.container.append(arrowLeft.add(arrowRight));\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t});\\n\\n\\t\\t\\t\\t_mfpOn(CHANGE_EVENT + ns, function () {\\n\\t\\t\\t\\t\\tif (mfp._preloadTimeout) clearTimeout(mfp._preloadTimeout);\\n\\n\\t\\t\\t\\t\\tmfp._preloadTimeout = setTimeout(function () {\\n\\t\\t\\t\\t\\t\\tmfp.preloadNearbyImages();\\n\\t\\t\\t\\t\\t\\tmfp._preloadTimeout = null;\\n\\t\\t\\t\\t\\t}, 16);\\n\\t\\t\\t\\t});\\n\\n\\n\\t\\t\\t\\t_mfpOn(CLOSE_EVENT + ns, function () {\\n\\t\\t\\t\\t\\t_document.off(ns);\\n\\t\\t\\t\\t\\tmfp.wrap.off('click' + ns);\\n\\t\\t\\t\\t\\tmfp.arrowRight = mfp.arrowLeft = null;\\n\\t\\t\\t\\t});\\n\\n\\t\\t\\t},\\n\\t\\t\\tnext: function () {\\n\\t\\t\\t\\tmfp.direction = true;\\n\\t\\t\\t\\tmfp.index = _getLoopedId(mfp.index + 1);\\n\\t\\t\\t\\tmfp.updateItemHTML();\\n\\t\\t\\t},\\n\\t\\t\\tprev: function () {\\n\\t\\t\\t\\tmfp.direction = false;\\n\\t\\t\\t\\tmfp.index = _getLoopedId(mfp.index - 1);\\n\\t\\t\\t\\tmfp.updateItemHTML();\\n\\t\\t\\t},\\n\\t\\t\\tgoTo: function (newIndex) {\\n\\t\\t\\t\\tmfp.direction = (newIndex >= mfp.index);\\n\\t\\t\\t\\tmfp.index = newIndex;\\n\\t\\t\\t\\tmfp.updateItemHTML();\\n\\t\\t\\t},\\n\\t\\t\\tpreloadNearbyImages: function () {\\n\\t\\t\\t\\tvar p = mfp.st.gallery.preload,\\n\\t\\t\\t\\t\\tpreloadBefore = Math.min(p[0], mfp.items.length),\\n\\t\\t\\t\\t\\tpreloadAfter = Math.min(p[1], mfp.items.length),\\n\\t\\t\\t\\t\\ti;\\n\\n\\t\\t\\t\\tfor (i = 1; i <= (mfp.direction ? preloadAfter : preloadBefore); i++) {\\n\\t\\t\\t\\t\\tmfp._preloadItem(mfp.index + i);\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\tfor (i = 1; i <= (mfp.direction ? preloadBefore : preloadAfter); i++) {\\n\\t\\t\\t\\t\\tmfp._preloadItem(mfp.index - i);\\n\\t\\t\\t\\t}\\n\\t\\t\\t},\\n\\t\\t\\t_preloadItem: function (index) {\\n\\t\\t\\t\\tindex = _getLoopedId(index);\\n\\n\\t\\t\\t\\tif (mfp.items[index].preloaded) {\\n\\t\\t\\t\\t\\treturn;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\tvar item = mfp.items[index];\\n\\t\\t\\t\\tif (!item.parsed) {\\n\\t\\t\\t\\t\\titem = mfp.parseEl(index);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t_mfpTrigger('LazyLoad', item);\\n\\n\\t\\t\\t\\tif (item.type === 'image') {\\n\\t\\t\\t\\t\\titem.img = $('').on('load.mfploader', function () {\\n\\t\\t\\t\\t\\t\\titem.hasSize = true;\\n\\t\\t\\t\\t\\t}).on('error.mfploader', function () {\\n\\t\\t\\t\\t\\t\\titem.hasSize = true;\\n\\t\\t\\t\\t\\t\\titem.loadError = true;\\n\\t\\t\\t\\t\\t\\t_mfpTrigger('LazyLoadError', item);\\n\\t\\t\\t\\t\\t}).attr('src', item.src);\\n\\t\\t\\t\\t/*! Magnific Popup - v1.1.0 - 2016-02-20\\n* http://dimsemenov.com/plugins/magnific-popup/\\n* Copyright (c) 2016 Dmitry Semenov; */\\n;(function (factory) { \\nif (typeof define === 'function' && define.amd) { \\n // AMD. Register as an anonymous module. \\n define(['jquery'], factory); \\n } else if (typeof exports === 'object') { \\n // Node/CommonJS \\n factory(require('jquery')); \\n } else { \\n // Browser globals \\n factory(window.jQuery || window.Zepto); \\n } \\n }(function($) { \\n\\n/*>>core*/\\n/**\\n * \\n * Magnific Popup Core JS file\\n * \\n */\\n\\n\\n/**\\n * Private static constants\\n */\\nvar CLOSE_EVENT = 'Close',\\n\\tBEFORE_CLOSE_EVENT = 'BeforeClose',\\n\\tAFTER_CLOSE_EVENT = 'AfterClose',\\n\\tBEFORE_APPEND_EVENT = 'BeforeAppend',\\n\\tMARKUP_PARSE_EVENT = 'MarkupParse',\\n\\tOPEN_EVENT = 'Open',\\n\\tCHANGE_EVENT = 'Change',\\n\\tNS = 'mfp',\\n\\tEVENT_NS = '.' + NS,\\n\\tREADY_CLASS = 'mfp-ready',\\n\\tREMOVING_CLASS = 'mfp-removing',\\n\\tPREVENT_CLOSE_CLASS = 'mfp-prevent-close';\\n\\n\\n/**\\n * Private vars \\n */\\n/*jshint -W079 */\\nvar mfp, // As we have only one instance of MagnificPopup object, we define it locally to not to use 'this'\\n\\tMagnificPopup = function(){},\\n\\t_isJQ = !!(window.jQuery),\\n\\t_prevStatus,\\n\\t_window = $(window),\\n\\t_document,\\n\\t_prevContentType,\\n\\t_wrapClasses,\\n\\t_currPopupType;\\n\\n\\n/**\\n * Private functions\\n */\\nvar _mfpOn = function(name, f) {\\n\\t\\tmfp.ev.on(NS + name + EVENT_NS, f);\\n\\t},\\n\\t_getEl = function(className, appendTo, html, raw) {\\n\\t\\tvar el = document.createElement('div');\\n\\t\\tel.className = 'mfp-'+className;\\n\\t\\tif(html) {\\n\\t\\t\\tel.innerHTML = html;\\n\\t\\t}\\n\\t\\tif(!raw) {\\n\\t\\t\\tel = $(el);\\n\\t\\t\\tif(appendTo) {\\n\\t\\t\\t\\tel.appendTo(appendTo);\\n\\t\\t\\t}\\n\\t\\t} else if(appendTo) {\\n\\t\\t\\tappendTo.appendChild(el);\\n\\t\\t}\\n\\t\\treturn el;\\n\\t},\\n\\t_mfpTrigger = function(e, data) {\\n\\t\\tmfp.ev.triggerHandler(NS + e, data);\\n\\n\\t\\tif(mfp.st.callbacks) {\\n\\t\\t\\t// converts \\\"mfpEventName\\\" to \\\"eventName\\\" callback and triggers it if it's present\\n\\t\\t\\te = e.charAt(0).toLowerCase() + e.slice(1);\\n\\t\\t\\tif(mfp.st.callbacks[e]) {\\n\\t\\t\\t\\tmfp.st.callbacks[e].apply(mfp, $.isArray(data) ? data : [data]);\\n\\t\\t\\t}\\n\\t\\t}\\n\\t},\\n\\t_getCloseBtn = function(type) {\\n\\t\\tif(type !== _currPopupType || !mfp.currTemplate.closeBtn) {\\n\\t\\t\\tmfp.currTemplate.closeBtn = $( mfp.st.closeMarkup.replace('%title%', mfp.st.tClose ) );\\n\\t\\t\\t_currPopupType = type;\\n\\t\\t}\\n\\t\\treturn mfp.currTemplate.closeBtn;\\n\\t},\\n\\t// Initialize Magnific Popup only when called at least once\\n\\t_checkInstance = function() {\\n\\t\\tif(!$.magnificPopup.instance) {\\n\\t\\t\\t/*jshint -W020 */\\n\\t\\t\\tmfp = new MagnificPopup();\\n\\t\\t\\tmfp.init();\\n\\t\\t\\t$.magnificPopup.instance = mfp;\\n\\t\\t}\\n\\t},\\n\\t// CSS transition detection, http://stackoverflow.com/questions/7264899/detect-css-transitions-using-javascript-and-without-modernizr\\n\\tsupportsTransitions = function() {\\n\\t\\tvar s = document.createElement('p').style, // 's' for style. better to create an element if body yet to exist\\n\\t\\t\\tv = ['ms','O','Moz','Webkit']; // 'v' for vendor\\n\\n\\t\\tif( s['transition'] !== undefined ) {\\n\\t\\t\\treturn true; \\n\\t\\t}\\n\\t\\t\\t\\n\\t\\twhile( v.length ) {\\n\\t\\t\\tif( v.pop() + 'Transition' in s ) {\\n\\t\\t\\t\\treturn true;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t\\t\\t\\t\\n\\t\\treturn false;\\n\\t};\\n\\n\\n\\n/**\\n * Public functions\\n */\\nMagnificPopup.prototype = {\\n\\n\\tconstructor: MagnificPopup,\\n\\n\\t/**\\n\\t * Initializes Magnific Popup plugin. \\n\\t * This function is triggered only once when $.fn.magnificPopup or $.magnificPopup is executed\\n\\t */\\n\\tinit: function() {\\n\\t\\tvar appVersion = navigator.appVersion;\\n\\t\\tmfp.isLowIE = mfp.isIE8 = document.all && !document.addEventListener;\\n\\t\\tmfp.isAndroid = (/android/gi).test(appVersion);\\n\\t\\tmfp.isIOS = (/iphone|ipad|ipod/gi).test(appVersion);\\n\\t\\tmfp.supportsTransition = supportsTransitions();\\n\\n\\t\\t// We disable fixed positioned lightbox on devices that don't handle it nicely.\\n\\t\\t// If you know a better way of detecting this - let me know.\\n\\t\\tmfp.probablyMobile = (mfp.isAndroid || mfp.isIOS || /(Opera Mini)|Kindle|webOS|BlackBerry|(Opera Mobi)|(Windows Phone)|IEMobile/i.test(navigator.userAgent) );\\n\\t\\t_document = $(document);\\n\\n\\t\\tmfp.popupsCache = {};\\n\\t},\\n\\n\\t/**\\n\\t * Opens popup\\n\\t * @param data [description]\\n\\t */\\n\\topen: function(data) {\\n\\n\\t\\tvar i;\\n\\n\\t\\tif(data.isObj === false) { \\n\\t\\t\\t// convert jQuery collection to array to avoid conflicts later\\n\\t\\t\\tmfp.items = data.items.toArray();\\n\\n\\t\\t\\tmfp.index = 0;\\n\\t\\t\\tvar items = data.items,\\n\\t\\t\\t\\titem;\\n\\t\\t\\tfor(i = 0; i < items.length; i++) {\\n\\t\\t\\t\\titem = items[i];\\n\\t\\t\\t\\tif(item.parsed) {\\n\\t\\t\\t\\t\\titem = item.el[0];\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\tif(item === data.el[0]) {\\n\\t\\t\\t\\t\\tmfp.index = i;\\n\\t\\t\\t\\t\\tbreak;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\tmfp.items = $.isArray(data.items) ? data.items : [data.items];\\n\\t\\t\\tmfp.index = data.index || 0;\\n\\t\\t}\\n\\n\\t\\t// if popup is already opened - we just update the content\\n\\t\\tif(mfp.isOpen) {\\n\\t\\t\\tmfp.updateItemHTML();\\n\\t\\t\\treturn;\\n\\t\\t}\\n\\t\\t\\n\\t\\tmfp.types = []; \\n\\t\\t_wrapClasses = '';\\n\\t\\tif(data.mainEl && data.mainEl.length) {\\n\\t\\t\\tmfp.ev = data.mainEl.eq(0);\\n\\t\\t} else {\\n\\t\\t\\tmfp.ev = _document;\\n\\t\\t}\\n\\n\\t\\tif(data.key) {\\n\\t\\t\\tif(!mfp.popupsCache[data.key]) {\\n\\t\\t\\t\\tmfp.popupsCache[data.key] = {};\\n\\t\\t\\t}\\n\\t\\t\\tmfp.currTemplate = mfp.popupsCache[data.key];\\n\\t\\t} else {\\n\\t\\t\\tmfp.currTemplate = {};\\n\\t\\t}\\n\\n\\n\\n\\t\\tmfp.st = $.extend(true, {}, $.magnificPopup.defaults, data ); \\n\\t\\tmfp.fixedContentPos = mfp.st.fixedContentPos === 'auto' ? !mfp.probablyMobile : mfp.st.fixedContentPos;\\n\\n\\t\\tif(mfp.st.modal) {\\n\\t\\t\\tmfp.st.closeOnContentClick = false;\\n\\t\\t\\tmfp.st.closeOnBgClick = false;\\n\\t\\t\\tmfp.st.showCloseBtn = false;\\n\\t\\t\\tmfp.st.enableEscapeKey = false;\\n\\t\\t}\\n\\t\\t\\n\\n\\t\\t// Building markup\\n\\t\\t// main containers are created only once\\n\\t\\tif(!mfp.bgOverlay) {\\n\\n\\t\\t\\t// Dark overlay\\n\\t\\t\\tmfp.bgOverlay = _getEl('bg').on('click'+EVENT_NS, function() {\\n\\t\\t\\t\\tmfp.close();\\n\\t\\t\\t});\\n\\n\\t\\t\\tmfp.wrap = _getEl('wrap').attr('tabindex', -1).on('click'+EVENT_NS, function(e) {\\n\\t\\t\\t\\tif(mfp._checkIfClose(e.target)) {\\n\\t\\t\\t\\t\\tmfp.close();\\n\\t\\t\\t\\t}\\n\\t\\t\\t});\\n\\n\\t\\t\\tmfp.container = _getEl('container', mfp.wrap);\\n\\t\\t}\\n\\n\\t\\tmfp.contentContainer = _getEl('content');\\n\\t\\tif(mfp.st.preloader) {\\n\\t\\t\\tmfp.preloader = _getEl('preloader', mfp.container, mfp.st.tLoading);\\n\\t\\t}\\n\\n\\n\\t\\t// Initializing modules\\n\\t\\tvar modules = $.magnificPopup.modules;\\n\\t\\tfor(i = 0; i < modules.length; i++) {\\n\\t\\t\\tvar n = modules[i];\\n\\t\\t\\tn = n.charAt(0).toUpperCase() + n.slice(1);\\n\\t\\t\\tmfp['init'+n].call(mfp);\\n\\t\\t}\\n\\t\\t_mfpTrigger('BeforeOpen');\\n\\n\\n\\t\\tif(mfp.st.showCloseBtn) {\\n\\t\\t\\t// Close button\\n\\t\\t\\tif(!mfp.st.closeBtnInside) {\\n\\t\\t\\t\\tmfp.wrap.append( _getCloseBtn() );\\n\\t\\t\\t} else {\\n\\t\\t\\t\\t_mfpOn(MARKUP_PARSE_EVENT, function(e, template, values, item) {\\n\\t\\t\\t\\t\\tvalues.close_replaceWith = _getCloseBtn(item.type);\\n\\t\\t\\t\\t});\\n\\t\\t\\t\\t_wrapClasses += ' mfp-close-btn-in';\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\tif(mfp.st.alignTop) {\\n\\t\\t\\t_wrapClasses += ' mfp-align-top';\\n\\t\\t}\\n\\n\\t\\n\\n\\t\\tif(mfp.fixedContentPos) {\\n\\t\\t\\tmfp.wrap.css({\\n\\t\\t\\t\\toverflow: mfp.st.overflowY,\\n\\t\\t\\t\\toverflowX: 'hidden',\\n\\t\\t\\t\\toverflowY: mfp.st.overflowY\\n\\t\\t\\t});\\n\\t\\t} else {\\n\\t\\t\\tmfp.wrap.css({ \\n\\t\\t\\t\\ttop: _window.scrollTop(),\\n\\t\\t\\t\\tposition: 'absolute'\\n\\t\\t\\t});\\n\\t\\t}\\n\\t\\tif( mfp.st.fixedBgPos === false || (mfp.st.fixedBgPos === 'auto' && !mfp.fixedContentPos) ) {\\n\\t\\t\\tmfp.bgOverlay.css({\\n\\t\\t\\t\\theight: _document.height(),\\n\\t\\t\\t\\tposition: 'absolute'\\n\\t\\t\\t});\\n\\t\\t}\\n\\n\\t\\t\\n\\n\\t\\tif(mfp.st.enableEscapeKey) {\\n\\t\\t\\t// Close on ESC key\\n\\t\\t\\t_document.on('keyup' + EVENT_NS, function(e) {\\n\\t\\t\\t\\tif(e.keyCode === 27) {\\n\\t\\t\\t\\t\\tmfp.close();\\n\\t\\t\\t\\t}\\n\\t\\t\\t});\\n\\t\\t}\\n\\n\\t\\t_window.on('resize' + EVENT_NS, function() {\\n\\t\\t\\tmfp.updateSize();\\n\\t\\t});\\n\\n\\n\\t\\tif(!mfp.st.closeOnContentClick) {\\n\\t\\t\\t_wrapClasses += ' mfp-auto-cursor';\\n\\t\\t}\\n\\t\\t\\n\\t\\tif(_wrapClasses)\\n\\t\\t\\tmfp.wrap.addClass(_wrapClasses);\\n\\n\\n\\t\\t// this triggers recalculation of layout, so we get it once to not to trigger twice\\n\\t\\tvar windowHeight = mfp.wH = _window.height();\\n\\n\\t\\t\\n\\t\\tvar windowStyles = {};\\n\\n\\t\\tif( mfp.fixedContentPos ) {\\n if(mfp._hasScrollBar(windowHeight)){\\n var s = mfp._getScrollbarSize();\\n if(s) {\\n windowStyles.marginRight = s;\\n }\\n }\\n }\\n\\n\\t\\tif(mfp.fixedContentPos) {\\n\\t\\t\\tif(!mfp.isIE7) {\\n\\t\\t\\t\\twindowStyles.overflow = 'hidden';\\n\\t\\t\\t} else {\\n\\t\\t\\t\\t// ie7 double-scroll bug\\n\\t\\t\\t\\t$('body, html').css('overflow', 'hidden');\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t\\n\\t\\t\\n\\t\\tvar classesToadd = mfp.st.mainClass;\\n\\t\\tif(mfp.isIE7) {\\n\\t\\t\\tclassesToadd += ' mfp-ie7';\\n\\t\\t}\\n\\t\\tif(classesToadd) {\\n\\t\\t\\tmfp._addClassToMFP( classesToadd );\\n\\t\\t}\\n\\n\\t\\t// add content\\n\\t\\tmfp.updateItemHTML();\\n\\n\\t\\t_mfpTrigger('BuildControls');\\n\\n\\t\\t// remove scrollbar, add margin e.t.c\\n\\t\\t$('html').css(windowStyles);\\n\\t\\t\\n\\t\\t// add everything to DOM\\n\\t\\tmfp.bgOverlay.add(mfp.wrap).prependTo( mfp.st.prependTo || $(document.body) );\\n\\n\\t\\t// Save last focused element\\n\\t\\tmfp._lastFocusedEl = document.activeElement;\\n\\t\\t\\n\\t\\t// Wait for next cycle to allow CSS transition\\n\\t\\tsetTimeout(function() {\\n\\t\\t\\t\\n\\t\\t\\tif(mfp.content) {\\n\\t\\t\\t\\tmfp._addClassToMFP(READY_CLASS);\\n\\t\\t\\t\\tmfp._setFocus();\\n\\t\\t\\t} else {\\n\\t\\t\\t\\t// if content is not defined (not loaded e.t.c) we add class only for BG\\n\\t\\t\\t\\tmfp.bgOverlay.addClass(READY_CLASS);\\n\\t\\t\\t}\\n\\t\\t\\t\\n\\t\\t\\t// Trap the focus in popup\\n\\t\\t\\t_document.on('focusin' + EVENT_NS, mfp._onFocusIn);\\n\\n\\t\\t}, 16);\\n\\n\\t\\tmfp.isOpen = true;\\n\\t\\tmfp.updateSize(windowHeight);\\n\\t\\t_mfpTrigger(OPEN_EVENT);\\n\\n\\t\\treturn data;\\n\\t},\\n\\n\\t/**\\n\\t * Closes the popup\\n\\t */\\n\\tclose: function() {\\n\\t\\tif(!mfp.isOpen) return;\\n\\t\\t_mfpTrigger(BEFORE_CLOSE_EVENT);\\n\\n\\t\\tmfp.isOpen = false;\\n\\t\\t// for CSS3 animation\\n\\t\\tif(mfp.st.removalDelay && !mfp.isLowIE && mfp.supportsTransition ) {\\n\\t\\t\\tmfp._addClassToMFP(REMOVING_CLASS);\\n\\t\\t\\tsetTimeout(function() {\\n\\t\\t\\t\\tmfp._close();\\n\\t\\t\\t}, mfp.st.removalDelay);\\n\\t\\t} else {\\n\\t\\t\\tmfp._close();\\n\\t\\t}\\n\\t},\\n\\n\\t/**\\n\\t * Helper for close() function\\n\\t */\\n\\t_close: function() {\\n\\t\\t_mfpTrigger(CLOSE_EVENT);\\n\\n\\t\\tvar classesToRemove = REMOVING_CLASS + ' ' + READY_CLASS + ' ';\\n\\n\\t\\tmfp.bgOverlay.detach();\\n\\t\\tmfp.wrap.detach();\\n\\t\\tmfp.container.empty();\\n\\n\\t\\tif(mfp.st.mainClass) {\\n\\t\\t\\tclassesToRemove += mfp.st.mainClass + ' ';\\n\\t\\t}\\n\\n\\t\\tmfp._removeClassFromMFP(classesToRemove);\\n\\n\\t\\tif(mfp.fixedContentPos) {\\n\\t\\t\\tvar windowStyles = {marginRight: ''};\\n\\t\\t\\tif(mfp.isIE7) {\\n\\t\\t\\t\\t$('body, html').css('overflow', '');\\n\\t\\t\\t} else {\\n\\t\\t\\t\\twindowStyles.overflow = '';\\n\\t\\t\\t}\\n\\t\\t\\t$('html').css(windowStyles);\\n\\t\\t}\\n\\t\\t\\n\\t\\t_document.off('keyup' + EVENT_NS + ' focusin' + EVENT_NS);\\n\\t\\tmfp.ev.off(EVENT_NS);\\n\\n\\t\\t// clean up DOM elements that aren't removed\\n\\t\\tmfp.wrap.attr('class', 'mfp-wrap').removeAttr('style');\\n\\t\\tmfp.bgOverlay.attr('class', 'mfp-bg');\\n\\t\\tmfp.container.attr('class', 'mfp-container');\\n\\n\\t\\t// remove close button from target element\\n\\t\\tif(mfp.st.showCloseBtn &&\\n\\t\\t(!mfp.st.closeBtnInside || mfp.currTemplate[mfp.currItem.type] === true)) {\\n\\t\\t\\tif(mfp.currTemplate.closeBtn)\\n\\t\\t\\t\\tmfp.currTemplate.closeBtn.detach();\\n\\t\\t}\\n\\n\\n\\t\\tif(mfp.st.autoFocusLast && mfp._lastFocusedEl) {\\n\\t\\t\\t$(mfp._lastFocusedEl).focus(); // put tab focus back\\n\\t\\t}\\n\\t\\tmfp.currItem = null;\\t\\n\\t\\tmfp.content = null;\\n\\t\\tmfp.currTemplate = null;\\n\\t\\tmfp.prevHeight = 0;\\n\\n\\t\\t_mfpTrigger(AFTER_CLOSE_EVENT);\\n\\t},\\n\\t\\n\\tupdateSize: function(winHeight) {\\n\\n\\t\\tif(mfp.isIOS) {\\n\\t\\t\\t// fixes iOS nav bars https://github.com/dimsemenov/Magnific-Popup/issues/2\\n\\t\\t\\tvar zoomLevel = document.documentElement.clientWidth / window.innerWidth;\\n\\t\\t\\tvar height = window.innerHeight * zoomLevel;\\n\\t\\t\\tmfp.wrap.css('height', height);\\n\\t\\t\\tmfp.wH = height;\\n\\t\\t} else {\\n\\t\\t\\tmfp.wH = winHeight || _window.height();\\n\\t\\t}\\n\\t\\t// Fixes #84: popup incorrectly positioned with position:relative on body\\n\\t\\tif(!mfp.fixedContentPos) {\\n\\t\\t\\tmfp.wrap.css('height', mfp.wH);\\n\\t\\t}\\n\\n\\t\\t_mfpTrigger('Resize');\\n\\n\\t},\\n\\n\\t/**\\n\\t * Set content of popup based on current index\\n\\t */\\n\\tupdateItemHTML: function() {\\n\\t\\tvar item = mfp.items[mfp.index];\\n\\n\\t\\t// Detach and perform modifications\\n\\t\\tmfp.contentContainer.detach();\\n\\n\\t\\tif(mfp.content)\\n\\t\\t\\tmfp.content.detach();\\n\\n\\t\\tif(!item.parsed) {\\n\\t\\t\\titem = mfp.parseEl( mfp.index );\\n\\t\\t}\\n\\n\\t\\tvar type = item.type;\\n\\n\\t\\t_mfpTrigger('BeforeChange', [mfp.currItem ? mfp.currItem.type : '', type]);\\n\\t\\t// BeforeChange event works like so:\\n\\t\\t// _mfpOn('BeforeChange', function(e, prevType, newType) { });\\n\\n\\t\\tmfp.currItem = item;\\n\\n\\t\\tif(!mfp.currTemplate[type]) {\\n\\t\\t\\tvar markup = mfp.st[type] ? mfp.st[type].markup : false;\\n\\n\\t\\t\\t// allows to modify markup\\n\\t\\t\\t_mfpTrigger('FirstMarkupParse', markup);\\n\\n\\t\\t\\tif(markup) {\\n\\t\\t\\t\\tmfp.currTemplate[type] = $(markup);\\n\\t\\t\\t} else {\\n\\t\\t\\t\\t// if there is no markup found we just define that template is parsed\\n\\t\\t\\t\\tmfp.currTemplate[type] = true;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\tif(_prevContentType && _prevContentType !== item.type) {\\n\\t\\t\\tmfp.container.removeClass('mfp-'+_prevContentType+'-holder');\\n\\t\\t}\\n\\n\\t\\tvar newContent = mfp['get' + type.charAt(0).toUpperCase() + type.slice(1)](item, mfp.currTemplate[type]);\\n\\t\\tmfp.appendContent(newContent, type);\\n\\n\\t\\titem.preloaded = true;\\n\\n\\t\\t_mfpTrigger(CHANGE_EVENT, item);\\n\\t\\t_prevContentType = item.type;\\n\\n\\t\\t// Append container back after its content changed\\n\\t\\tmfp.container.prepend(mfp.contentContainer);\\n\\n\\t\\t_mfpTrigger('AfterChange');\\n\\t},\\n\\n\\n\\t/**\\n\\t * Set HTML content of popup\\n\\t */\\n\\tappendContent: function(newContent, type) {\\n\\t\\tmfp.content = newContent;\\n\\n\\t\\tif(newContent) {\\n\\t\\t\\tif(mfp.st.showCloseBtn && mfp.st.closeBtnInside &&\\n\\t\\t\\t\\tmfp.currTemplate[type] === true) {\\n\\t\\t\\t\\t// if there is no markup, we just append close button element inside\\n\\t\\t\\t\\tif(!mfp.content.find('.mfp-close').length) {\\n\\t\\t\\t\\t\\tmfp.content.append(_getCloseBtn());\\n\\t\\t\\t\\t}\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tmfp.content = newContent;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\tmfp.content = '';\\n\\t\\t}\\n\\n\\t\\t_mfpTrigger(BEFORE_APPEND_EVENT);\\n\\t\\tmfp.container.addClass('mfp-'+type+'-holder');\\n\\n\\t\\tmfp.contentContainer.append(mfp.content);\\n\\t},\\n\\n\\n\\t/**\\n\\t * Creates Magnific Popup data object based on given data\\n\\t * @param {int} index Index of item to parse\\n\\t */\\n\\tparseEl: function(index) {\\n\\t\\tvar item = mfp.items[index],\\n\\t\\t\\ttype;\\n\\n\\t\\tif(item.tagName) {\\n\\t\\t\\titem = { el: $(item) };\\n\\t\\t} else {\\n\\t\\t\\ttype = item.type;\\n\\t\\t\\titem = { data: item, src: item.src };\\n\\t\\t}\\n\\n\\t\\tif(item.el) {\\n\\t\\t\\tvar types = mfp.types;\\n\\n\\t\\t\\t// check for 'mfp-TYPE' class\\n\\t\\t\\tfor(var i = 0; i < types.length; i++) {\\n\\t\\t\\t\\tif( item.el.hasClass('mfp-'+types[i]) ) {\\n\\t\\t\\t\\t\\ttype = types[i];\\n\\t\\t\\t\\t\\tbreak;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\titem.src = item.el.attr('data-mfp-src');\\n\\t\\t\\tif(!item.src) {\\n\\t\\t\\t\\titem.src = item.el.attr('href');\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\titem.type = type || mfp.st.type || 'inline';\\n\\t\\titem.index = index;\\n\\t\\titem.parsed = true;\\n\\t\\tmfp.items[index] = item;\\n\\t\\t_mfpTrigger('ElementParse', item);\\n\\n\\t\\treturn mfp.items[index];\\n\\t},\\n\\n\\n\\t/**\\n\\t * Initializes single popup or a group of popups\\n\\t */\\n\\taddGroup: function(el, options) {\\n\\t\\tvar eHandler = function(e) {\\n\\t\\t\\te.mfpEl = this;\\n\\t\\t\\tmfp._openClick(e, el, options);\\n\\t\\t};\\n\\n\\t\\tif(!options) {\\n\\t\\t\\toptions = {};\\n\\t\\t}\\n\\n\\t\\tvar eName = 'click.magnificPopup';\\n\\t\\toptions.mainEl = el;\\n\\n\\t\\tif(options.items) {\\n\\t\\t\\toptions.isObj = true;\\n\\t\\t\\tel.off(eName).on(eName, eHandler);\\n\\t\\t} else {\\n\\t\\t\\toptions.isObj = false;\\n\\t\\t\\tif(options.delegate) {\\n\\t\\t\\t\\tel.off(eName).on(eName, options.delegate , eHandler);\\n\\t\\t\\t} else {\\n\\t\\t\\t\\toptions.items = el;\\n\\t\\t\\t\\tel.off(eName).on(eName, eHandler);\\n\\t\\t\\t}\\n\\t\\t}\\n\\t},\\n\\t_openClick: function(e, el, options) {\\n\\t\\tvar midClick = options.midClick !== undefined ? options.midClick : $.magnificPopup.defaults.midClick;\\n\\n\\n\\t\\tif(!midClick && ( e.which === 2 || e.ctrlKey || e.metaKey || e.altKey || e.shiftKey ) ) {\\n\\t\\t\\treturn;\\n\\t\\t}\\n\\n\\t\\tvar disableOn = options.disableOn !== undefined ? options.disableOn : $.magnificPopup.defaults.disableOn;\\n\\n\\t\\tif(disableOn) {\\n\\t\\t\\tif($.isFunction(disableOn)) {\\n\\t\\t\\t\\tif( !disableOn.call(mfp) ) {\\n\\t\\t\\t\\t\\treturn true;\\n\\t\\t\\t\\t}\\n\\t\\t\\t} else { // else it's number\\n\\t\\t\\t\\tif( _window.width() < disableOn ) {\\n\\t\\t\\t\\t\\treturn true;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\tif(e.type) {\\n\\t\\t\\te.preventDefault();\\n\\n\\t\\t\\t// This will prevent popup from closing if element is inside and popup is already opened\\n\\t\\t\\tif(mfp.isOpen) {\\n\\t\\t\\t\\te.stopPropagation();\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\toptions.el = $(e.mfpEl);\\n\\t\\tif(options.delegate) {\\n\\t\\t\\toptions.items = el.find(options.delegate);\\n\\t\\t}\\n\\t\\tmfp.open(options);\\n\\t},\\n\\n\\n\\t/**\\n\\t * Updates text on preloader\\n\\t */\\n\\tupdateStatus: function(status, text) {\\n\\n\\t\\tif(mfp.preloader) {\\n\\t\\t\\tif(_prevStatus !== status) {\\n\\t\\t\\t\\tmfp.container.removeClass('mfp-s-'+_prevStatus);\\n\\t\\t\\t}\\n\\n\\t\\t\\tif(!text && status === 'loading') {\\n\\t\\t\\t\\ttext = mfp.st.tLoading;\\n\\t\\t\\t}\\n\\n\\t\\t\\tvar data = {\\n\\t\\t\\t\\tstatus: status,\\n\\t\\t\\t\\ttext: text\\n\\t\\t\\t};\\n\\t\\t\\t// allows to modify status\\n\\t\\t\\t_mfpTrigger('UpdateStatus', data);\\n\\n\\t\\t\\tstatus = data.status;\\n\\t\\t\\ttext = data.text;\\n\\n\\t\\t\\tmfp.preloader.html(text);\\n\\n\\t\\t\\tmfp.preloader.find('a').on('click', function(e) {\\n\\t\\t\\t\\te.stopImmediatePropagation();\\n\\t\\t\\t});\\n\\n\\t\\t\\tmfp.container.addClass('mfp-s-'+status);\\n\\t\\t\\t_prevStatus = status;\\n\\t\\t}\\n\\t},\\n\\n\\n\\t/*\\n\\t\\t\\\"Private\\\" helpers that aren't private at all\\n\\t */\\n\\t// Check to close popup or not\\n\\t// \\\"target\\\" is an element that was clicked\\n\\t_checkIfClose: function(target) {\\n\\n\\t\\tif($(target).hasClass(PREVENT_CLOSE_CLASS)) {\\n\\t\\t\\treturn;\\n\\t\\t}\\n\\n\\t\\tvar closeOnContent = mfp.st.closeOnContentClick;\\n\\t\\tvar closeOnBg = mfp.st.closeOnBgClick;\\n\\n\\t\\tif(closeOnContent && closeOnBg) {\\n\\t\\t\\treturn true;\\n\\t\\t} else {\\n\\n\\t\\t\\t// We close the popup if click is on close button or on preloader. Or if there is no content.\\n\\t\\t\\tif(!mfp.content || $(target).hasClass('mfp-close') || (mfp.preloader && target === mfp.preloader[0]) ) {\\n\\t\\t\\t\\treturn true;\\n\\t\\t\\t}\\n\\n\\t\\t\\t// if click is outside the content\\n\\t\\t\\tif( (target !== mfp.content[0] && !$.contains(mfp.content[0], target)) ) {\\n\\t\\t\\t\\tif(closeOnBg) {\\n\\t\\t\\t\\t\\t// last check, if the clicked element is in DOM, (in case it's removed onclick)\\n\\t\\t\\t\\t\\tif( $.contains(document, target) ) {\\n\\t\\t\\t\\t\\t\\treturn true;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\t\\t\\t} else if(closeOnContent) {\\n\\t\\t\\t\\treturn true;\\n\\t\\t\\t}\\n\\n\\t\\t}\\n\\t\\treturn false;\\n\\t},\\n\\t_addClassToMFP: function(cName) {\\n\\t\\tmfp.bgOverlay.addClass(cName);\\n\\t\\tmfp.wrap.addClass(cName);\\n\\t},\\n\\t_removeClassFromMFP: function(cName) {\\n\\t\\tthis.bgOverlay.removeClass(cName);\\n\\t\\tmfp.wrap.removeClass(cName);\\n\\t},\\n\\t_hasScrollBar: function(winHeight) {\\n\\t\\treturn ( (mfp.isIE7 ? _document.height() : document.body.scrollHeight) > (winHeight || _window.height()) );\\n\\t},\\n\\t_setFocus: function() {\\n\\t\\t(mfp.st.focus ? mfp.content.find(mfp.st.focus).eq(0) : mfp.wrap).focus();\\n\\t},\\n\\t_onFocusIn: function(e) {\\n\\t\\tif( e.target !== mfp.wrap[0] && !$.contains(mfp.wrap[0], e.target) ) {\\n\\t\\t\\tmfp._setFocus();\\n\\t\\t\\treturn false;\\n\\t\\t}\\n\\t},\\n\\t_parseMarkup: function(template, values, item) {\\n\\t\\tvar arr;\\n\\t\\tif(item.data) {\\n\\t\\t\\tvalues = $.extend(item.data, values);\\n\\t\\t}\\n\\t\\t_mfpTrigger(MARKUP_PARSE_EVENT, [template, values, item] );\\n\\n\\t\\t$.each(values, function(key, value) {\\n\\t\\t\\tif(value === undefined || value === false) {\\n\\t\\t\\t\\treturn true;\\n\\t\\t\\t}\\n\\t\\t\\tarr = key.split('_');\\n\\t\\t\\tif(arr.length > 1) {\\n\\t\\t\\t\\tvar el = template.find(EVENT_NS + '-'+arr[0]);\\n\\n\\t\\t\\t\\tif(el.length > 0) {\\n\\t\\t\\t\\t\\tvar attr = arr[1];\\n\\t\\t\\t\\t\\tif(attr === 'replaceWith') {\\n\\t\\t\\t\\t\\t\\tif(el[0] !== value[0]) {\\n\\t\\t\\t\\t\\t\\t\\tel.replaceWith(value);\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t} else if(attr === 'img') {\\n\\t\\t\\t\\t\\t\\tif(el.is('img')) {\\n\\t\\t\\t\\t\\t\\t\\tel.attr('src', value);\\n\\t\\t\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t\\t\\tel.replaceWith( $('').attr('src', value).attr('class', el.attr('class')) );\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t\\tel.attr(arr[1], value);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t} else {\\n\\t\\t\\t\\ttemplate.find(EVENT_NS + '-'+key).html(value);\\n\\t\\t\\t}\\n\\t\\t});\\n\\t},\\n\\n\\t_getScrollbarSize: function() {\\n\\t\\t// thx David\\n\\t\\tif(mfp.scrollbarSize === undefined) {\\n\\t\\t\\tvar scrollDiv = document.createElement(\\\"div\\\");\\n\\t\\t\\tscrollDiv.style.cssText = 'width: 99px; height: 99px; overflow: scroll; position: absolute; top: -9999px;';\\n\\t\\t\\tdocument.body.appendChild(scrollDiv);\\n\\t\\t\\tmfp.scrollbarSize = scrollDiv.offsetWidth - scrollDiv.clientWidth;\\n\\t\\t\\tdocument.body.removeChild(scrollDiv);\\n\\t\\t}\\n\\t\\treturn mfp.scrollbarSize;\\n\\t}\\n\\n}; /* MagnificPopup core prototype end */\\n\\n\\n\\n\\n/**\\n * Public static functions\\n */\\n$.magnificPopup = {\\n\\tinstance: null,\\n\\tproto: MagnificPopup.prototype,\\n\\tmodules: [],\\n\\n\\topen: function(options, index) {\\n\\t\\t_checkInstance();\\n\\n\\t\\tif(!options) {\\n\\t\\t\\toptions = {};\\n\\t\\t} else {\\n\\t\\t\\toptions = $.extend(true, {}, options);\\n\\t\\t}\\n\\n\\t\\toptions.isObj = true;\\n\\t\\toptions.index = index || 0;\\n\\t\\treturn this.instance.open(options);\\n\\t},\\n\\n\\tclose: function() {\\n\\t\\treturn $.magnificPopup.instance && $.magnificPopup.instance.close();\\n\\t},\\n\\n\\tregisterModule: function(name, module) {\\n\\t\\tif(module.options) {\\n\\t\\t\\t$.magnificPopup.defaults[name] = module.options;\\n\\t\\t}\\n\\t\\t$.extend(this.proto, module.proto);\\n\\t\\tthis.modules.push(name);\\n\\t},\\n\\n\\tdefaults: {\\n\\n\\t\\t// Info about options is in docs:\\n\\t\\t// http://dimsemenov.com/plugins/magnific-popup/documentation.html#options\\n\\n\\t\\tdisableOn: 0,\\n\\n\\t\\tkey: null,\\n\\n\\t\\tmidClick: false,\\n\\n\\t\\tmainClass: '',\\n\\n\\t\\tpreloader: true,\\n\\n\\t\\tfocus: '', // CSS selector of input to focus after popup is opened\\n\\n\\t\\tcloseOnContentClick: false,\\n\\n\\t\\tcloseOnBgClick: true,\\n\\n\\t\\tcloseBtnInside: true,\\n\\n\\t\\tshowCloseBtn: true,\\n\\n\\t\\tenableEscapeKey: true,\\n\\n\\t\\tmodal: false,\\n\\n\\t\\talignTop: false,\\n\\n\\t\\tremovalDelay: 0,\\n\\n\\t\\tprependTo: null,\\n\\n\\t\\tfixedContentPos: 'auto',\\n\\n\\t\\tfixedBgPos: 'auto',\\n\\n\\t\\toverflowY: 'auto',\\n\\n\\t\\tcloseMarkup: '',\\n\\n\\t\\ttClose: 'Close (Esc)',\\n\\n\\t\\ttLoading: 'Loading...',\\n\\n\\t\\tautoFocusLast: true\\n\\n\\t}\\n};\\n\\n\\n\\n$.fn.magnificPopup = function(options) {\\n\\t_checkInstance();\\n\\n\\tvar jqEl = $(this);\\n\\n\\t// We call some API method of first param is a string\\n\\tif (typeof options === \\\"string\\\" ) {\\n\\n\\t\\tif(options === 'open') {\\n\\t\\t\\tvar items,\\n\\t\\t\\t\\titemOpts = _isJQ ? jqEl.data('magnificPopup') : jqEl[0].magnificPopup,\\n\\t\\t\\t\\tindex = parseInt(arguments[1], 10) || 0;\\n\\n\\t\\t\\tif(itemOpts.items) {\\n\\t\\t\\t\\titems = itemOpts.items[index];\\n\\t\\t\\t} else {\\n\\t\\t\\t\\titems = jqEl;\\n\\t\\t\\t\\tif(itemOpts.delegate) {\\n\\t\\t\\t\\t\\titems = items.find(itemOpts.delegate);\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\titems = items.eq( index );\\n\\t\\t\\t}\\n\\t\\t\\tmfp._openClick({mfpEl:items}, jqEl, itemOpts);\\n\\t\\t} else {\\n\\t\\t\\tif(mfp.isOpen)\\n\\t\\t\\t\\tmfp[options].apply(mfp, Array.prototype.slice.call(arguments, 1));\\n\\t\\t}\\n\\n\\t} else {\\n\\t\\t// clone options obj\\n\\t\\toptions = $.extend(true, {}, options);\\n\\n\\t\\t/*\\n\\t\\t * As Zepto doesn't support .data() method for objects\\n\\t\\t * and it works only in normal browsers\\n\\t\\t * we assign \\\"options\\\" object directly to the DOM element. FTW!\\n\\t\\t */\\n\\t\\tif(_isJQ) {\\n\\t\\t\\tjqEl.data('magnificPopup', options);\\n\\t\\t} else {\\n\\t\\t\\tjqEl[0].magnificPopup = options;\\n\\t\\t}\\n\\n\\t\\tmfp.addGroup(jqEl, options);\\n\\n\\t}\\n\\treturn jqEl;\\n};\\n\\n/*>>core*/\\n\\n/*>>inline*/\\n\\nvar INLINE_NS = 'inline',\\n\\t_hiddenClass,\\n\\t_inlinePlaceholder,\\n\\t_lastInlineElement,\\n\\t_putInlineElementsBack = function() {\\n\\t\\tif(_lastInlineElement) {\\n\\t\\t\\t_inlinePlaceholder.after( _lastInlineElement.addClass(_hiddenClass) ).detach();\\n\\t\\t\\t_lastInlineElement = null;\\n\\t\\t}\\n\\t};\\n\\n$.magnificPopup.registerModule(INLINE_NS, {\\n\\toptions: {\\n\\t\\thiddenClass: 'hide', // will be appended with `mfp-` prefix\\n\\t\\tmarkup: '',\\n\\t\\ttNotFound: 'Content not found'\\n\\t},\\n\\tproto: {\\n\\n\\t\\tinitInline: function() {\\n\\t\\t\\tmfp.types.push(INLINE_NS);\\n\\n\\t\\t\\t_mfpOn(CLOSE_EVENT+'.'+INLINE_NS, function() {\\n\\t\\t\\t\\t_putInlineElementsBack();\\n\\t\\t\\t});\\n\\t\\t},\\n\\n\\t\\tgetInline: function(item, template) {\\n\\n\\t\\t\\t_putInlineElementsBack();\\n\\n\\t\\t\\tif(item.src) {\\n\\t\\t\\t\\tvar inlineSt = mfp.st.inline,\\n\\t\\t\\t\\t\\tel = $(item.src);\\n\\n\\t\\t\\t\\tif(el.length) {\\n\\n\\t\\t\\t\\t\\t// If target element has parent - we replace it with placeholder and put it back after popup is closed\\n\\t\\t\\t\\t\\tvar parent = el[0].parentNode;\\n\\t\\t\\t\\t\\tif(parent && parent.tagName) {\\n\\t\\t\\t\\t\\t\\tif(!_inlinePlaceholder) {\\n\\t\\t\\t\\t\\t\\t\\t_hiddenClass = inlineSt.hiddenClass;\\n\\t\\t\\t\\t\\t\\t\\t_inlinePlaceholder = _getEl(_hiddenClass);\\n\\t\\t\\t\\t\\t\\t\\t_hiddenClass = 'mfp-'+_hiddenClass;\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t// replace target inline element with placeholder\\n\\t\\t\\t\\t\\t\\t_lastInlineElement = el.after(_inlinePlaceholder).detach().removeClass(_hiddenClass);\\n\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\tmfp.updateStatus('ready');\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\tmfp.updateStatus('error', inlineSt.tNotFound);\\n\\t\\t\\t\\t\\tel = $('
');\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\titem.inlineElement = el;\\n\\t\\t\\t\\treturn el;\\n\\t\\t\\t}\\n\\n\\t\\t\\tmfp.updateStatus('ready');\\n\\t\\t\\tmfp._parseMarkup(template, {}, item);\\n\\t\\t\\treturn template;\\n\\t\\t}\\n\\t}\\n});\\n\\n/*>>inline*/\\n\\n/*>>ajax*/\\nvar AJAX_NS = 'ajax',\\n\\t_ajaxCur,\\n\\t_removeAjaxCursor = function() {\\n\\t\\tif(_ajaxCur) {\\n\\t\\t\\t$(document.body).removeClass(_ajaxCur);\\n\\t\\t}\\n\\t},\\n\\t_destroyAjaxRequest = function() {\\n\\t\\t_removeAjaxCursor();\\n\\t\\tif(mfp.req) {\\n\\t\\t\\tmfp.req.abort();\\n\\t\\t}\\n\\t};\\n\\n$.magnificPopup.registerModule(AJAX_NS, {\\n\\n\\toptions: {\\n\\t\\tsettings: null,\\n\\t\\tcursor: 'mfp-ajax-cur',\\n\\t\\ttError: 'The content could not be loaded.'\\n\\t},\\n\\n\\tproto: {\\n\\t\\tinitAjax: function() {\\n\\t\\t\\tmfp.types.push(AJAX_NS);\\n\\t\\t\\t_ajaxCur = mfp.st.ajax.cursor;\\n\\n\\t\\t\\t_mfpOn(CLOSE_EVENT+'.'+AJAX_NS, _destroyAjaxRequest);\\n\\t\\t\\t_mfpOn('BeforeChange.' + AJAX_NS, _destroyAjaxRequest);\\n\\t\\t},\\n\\t\\tgetAjax: function(item) {\\n\\n\\t\\t\\tif(_ajaxCur) {\\n\\t\\t\\t\\t$(document.body).addClass(_ajaxCur);\\n\\t\\t\\t}\\n\\n\\t\\t\\tmfp.updateStatus('loading');\\n\\n\\t\\t\\tvar opts = $.extend({\\n\\t\\t\\t\\turl: item.src,\\n\\t\\t\\t\\tsuccess: function(data, textStatus, jqXHR) {\\n\\t\\t\\t\\t\\tvar temp = {\\n\\t\\t\\t\\t\\t\\tdata:data,\\n\\t\\t\\t\\t\\t\\txhr:jqXHR\\n\\t\\t\\t\\t\\t};\\n\\n\\t\\t\\t\\t\\t_mfpTrigger('ParseAjax', temp);\\n\\n\\t\\t\\t\\t\\tmfp.appendContent( $(temp.data), AJAX_NS );\\n\\n\\t\\t\\t\\t\\titem.finished = true;\\n\\n\\t\\t\\t\\t\\t_removeAjaxCursor();\\n\\n\\t\\t\\t\\t\\tmfp._setFocus();\\n\\n\\t\\t\\t\\t\\tsetTimeout(function() {\\n\\t\\t\\t\\t\\t\\tmfp.wrap.addClass(READY_CLASS);\\n\\t\\t\\t\\t\\t}, 16);\\n\\n\\t\\t\\t\\t\\tmfp.updateStatus('ready');\\n\\n\\t\\t\\t\\t\\t_mfpTrigger('AjaxContentAdded');\\n\\t\\t\\t\\t},\\n\\t\\t\\t\\terror: function() {\\n\\t\\t\\t\\t\\t_removeAjaxCursor();\\n\\t\\t\\t\\t\\titem.finished = item.loadError = true;\\n\\t\\t\\t\\t\\tmfp.updateStatus('error', mfp.st.ajax.tError.replace('%url%', item.src));\\n\\t\\t\\t\\t}\\n\\t\\t\\t}, mfp.st.ajax.settings);\\n\\n\\t\\t\\tmfp.req = $.ajax(opts);\\n\\n\\t\\t\\treturn '';\\n\\t\\t}\\n\\t}\\n});\\n\\n/*>>ajax*/\\n\\n/*>>image*/\\nvar _imgInterval,\\n\\t_getTitle = function(item) {\\n\\t\\tif(item.data && item.data.title !== undefined)\\n\\t\\t\\treturn item.data.title;\\n\\n\\t\\tvar src = mfp.st.image.titleSrc;\\n\\n\\t\\tif(src) {\\n\\t\\t\\tif($.isFunction(src)) {\\n\\t\\t\\t\\treturn src.call(mfp, item);\\n\\t\\t\\t} else if(item.el) {\\n\\t\\t\\t\\treturn item.el.attr(src) || '';\\n\\t\\t\\t}\\n\\t\\t}\\n\\t\\treturn '';\\n\\t};\\n\\n$.magnificPopup.registerModule('image', {\\n\\n\\toptions: {\\n\\t\\tmarkup: '
'+\\n\\t\\t\\t\\t\\t'
'+\\n\\t\\t\\t\\t\\t'
'+\\n\\t\\t\\t\\t\\t\\t'
'+\\n\\t\\t\\t\\t\\t\\t'
'+\\n\\t\\t\\t\\t\\t\\t\\t'
'+\\n\\t\\t\\t\\t\\t\\t\\t\\t'
'+\\n\\t\\t\\t\\t\\t\\t\\t\\t'
'+\\n\\t\\t\\t\\t\\t\\t\\t'
'+\\n\\t\\t\\t\\t\\t\\t'
'+\\n\\t\\t\\t\\t\\t'
'+\\n\\t\\t\\t\\t'
',\\n\\t\\tcursor: 'mfp-zoom-out-cur',\\n\\t\\ttitleSrc: 'title',\\n\\t\\tverticalFit: true,\\n\\t\\ttError: 'The image could not be loaded.'\\n\\t},\\n\\n\\tproto: {\\n\\t\\tinitImage: function() {\\n\\t\\t\\tvar imgSt = mfp.st.image,\\n\\t\\t\\t\\tns = '.image';\\n\\n\\t\\t\\tmfp.types.push('image');\\n\\n\\t\\t\\t_mfpOn(OPEN_EVENT+ns, function() {\\n\\t\\t\\t\\tif(mfp.currItem.type === 'image' && imgSt.cursor) {\\n\\t\\t\\t\\t\\t$(document.body).addClass(imgSt.cursor);\\n\\t\\t\\t\\t}\\n\\t\\t\\t});\\n\\n\\t\\t\\t_mfpOn(CLOSE_EVENT+ns, function() {\\n\\t\\t\\t\\tif(imgSt.cursor) {\\n\\t\\t\\t\\t\\t$(document.body).removeClass(imgSt.cursor);\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\t_window.off('resize' + EVENT_NS);\\n\\t\\t\\t});\\n\\n\\t\\t\\t_mfpOn('Resize'+ns, mfp.resizeImage);\\n\\t\\t\\tif(mfp.isLowIE) {\\n\\t\\t\\t\\t_mfpOn('AfterChange', mfp.resizeImage);\\n\\t\\t\\t}\\n\\t\\t},\\n\\t\\tresizeImage: function() {\\n\\t\\t\\tvar item = mfp.currItem;\\n\\t\\t\\tif(!item || !item.img) return;\\n\\n\\t\\t\\tif(mfp.st.image.verticalFit) {\\n\\t\\t\\t\\tvar decr = 0;\\n\\t\\t\\t\\t// fix box-sizing in ie7/8\\n\\t\\t\\t\\tif(mfp.isLowIE) {\\n\\t\\t\\t\\t\\tdecr = parseInt(item.img.css('padding-top'), 10) + parseInt(item.img.css('padding-bottom'),10);\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\titem.img.css('max-height', mfp.wH-decr);\\n\\t\\t\\t}\\n\\t\\t},\\n\\t\\t_onImageHasSize: function(item) {\\n\\t\\t\\tif(item.img) {\\n\\n\\t\\t\\t\\titem.hasSize = true;\\n\\n\\t\\t\\t\\tif(_imgInterval) {\\n\\t\\t\\t\\t\\tclearInterval(_imgInterval);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\titem.isCheckingImgSize = false;\\n\\n\\t\\t\\t\\t_mfpTrigger('ImageHasSize', item);\\n\\n\\t\\t\\t\\tif(item.imgHidden) {\\n\\t\\t\\t\\t\\tif(mfp.content)\\n\\t\\t\\t\\t\\t\\tmfp.content.removeClass('mfp-loading');\\n\\n\\t\\t\\t\\t\\titem.imgHidden = false;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t}\\n\\t\\t},\\n\\n\\t\\t/**\\n\\t\\t * Function that loops until the image has size to display elements that rely on it asap\\n\\t\\t */\\n\\t\\tfindImageSize: function(item) {\\n\\n\\t\\t\\tvar counter = 0,\\n\\t\\t\\t\\timg = item.img[0],\\n\\t\\t\\t\\tmfpSetInterval = function(delay) {\\n\\n\\t\\t\\t\\t\\tif(_imgInterval) {\\n\\t\\t\\t\\t\\t\\tclearInterval(_imgInterval);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t// decelerating interval that checks for size of an image\\n\\t\\t\\t\\t\\t_imgInterval = setInterval(function() {\\n\\t\\t\\t\\t\\t\\tif(img.naturalWidth > 0) {\\n\\t\\t\\t\\t\\t\\t\\tmfp._onImageHasSize(item);\\n\\t\\t\\t\\t\\t\\t\\treturn;\\n\\t\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\t\\tif(counter > 200) {\\n\\t\\t\\t\\t\\t\\t\\tclearInterval(_imgInterval);\\n\\t\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\t\\tcounter++;\\n\\t\\t\\t\\t\\t\\tif(counter === 3) {\\n\\t\\t\\t\\t\\t\\t\\tmfpSetInterval(10);\\n\\t\\t\\t\\t\\t\\t} else if(counter === 40) {\\n\\t\\t\\t\\t\\t\\t\\tmfpSetInterval(50);\\n\\t\\t\\t\\t\\t\\t} else if(counter === 100) {\\n\\t\\t\\t\\t\\t\\t\\tmfpSetInterval(500);\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t}, delay);\\n\\t\\t\\t\\t};\\n\\n\\t\\t\\tmfpSetInterval(1);\\n\\t\\t},\\n\\n\\t\\tgetImage: function(item, template) {\\n\\n\\t\\t\\tvar guard = 0,\\n\\n\\t\\t\\t\\t// image load complete handler\\n\\t\\t\\t\\tonLoadComplete = function() {\\n\\t\\t\\t\\t\\tif(item) {\\n\\t\\t\\t\\t\\t\\tif (item.img[0].complete) {\\n\\t\\t\\t\\t\\t\\t\\titem.img.off('.mfploader');\\n\\n\\t\\t\\t\\t\\t\\t\\tif(item === mfp.currItem){\\n\\t\\t\\t\\t\\t\\t\\t\\tmfp._onImageHasSize(item);\\n\\n\\t\\t\\t\\t\\t\\t\\t\\tmfp.updateStatus('ready');\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\t\\t\\titem.hasSize = true;\\n\\t\\t\\t\\t\\t\\t\\titem.loaded = true;\\n\\n\\t\\t\\t\\t\\t\\t\\t_mfpTrigger('ImageLoadComplete');\\n\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\telse {\\n\\t\\t\\t\\t\\t\\t\\t// if image complete check fails 200 times (20 sec), we assume that there was an error.\\n\\t\\t\\t\\t\\t\\t\\tguard++;\\n\\t\\t\\t\\t\\t\\t\\tif(guard < 200) {\\n\\t\\t\\t\\t\\t\\t\\t\\tsetTimeout(onLoadComplete,100);\\n\\t\\t\\t\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t\\t\\t\\tonLoadError();\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t},\\n\\n\\t\\t\\t\\t// image error handler\\n\\t\\t\\t\\tonLoadError = function() {\\n\\t\\t\\t\\t\\tif(item) {\\n\\t\\t\\t\\t\\t\\titem.img.off('.mfploader');\\n\\t\\t\\t\\t\\t\\tif(item === mfp.currItem){\\n\\t\\t\\t\\t\\t\\t\\tmfp._onImageHasSize(item);\\n\\t\\t\\t\\t\\t\\t\\tmfp.updateStatus('error', imgSt.tError.replace('%url%', item.src) );\\n\\t\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\t\\titem.hasSize = true;\\n\\t\\t\\t\\t\\t\\titem.loaded = true;\\n\\t\\t\\t\\t\\t\\titem.loadError = true;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t},\\n\\t\\t\\t\\timgSt = mfp.st.image;\\n\\n\\n\\t\\t\\tvar el = template.find('.mfp-img');\\n\\t\\t\\tif(el.length) {\\n\\t\\t\\t\\tvar img = document.createElement('img');\\n\\t\\t\\t\\timg.className = 'mfp-img';\\n\\t\\t\\t\\tif(item.el && item.el.find('img').length) {\\n\\t\\t\\t\\t\\timg.alt = item.el.find('img').attr('alt');\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\titem.img = $(img).on('load.mfploader', onLoadComplete).on('error.mfploader', onLoadError);\\n\\t\\t\\t\\timg.src = item.src;\\n\\n\\t\\t\\t\\t// without clone() \\\"error\\\" event is not firing when IMG is replaced by new IMG\\n\\t\\t\\t\\t// TODO: find a way to avoid such cloning\\n\\t\\t\\t\\tif(el.is('img')) {\\n\\t\\t\\t\\t\\titem.img = item.img.clone();\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\timg = item.img[0];\\n\\t\\t\\t\\tif(img.naturalWidth > 0) {\\n\\t\\t\\t\\t\\titem.hasSize = true;\\n\\t\\t\\t\\t} else if(!img.width) {\\n\\t\\t\\t\\t\\titem.hasSize = false;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\tmfp._parseMarkup(template, {\\n\\t\\t\\t\\ttitle: _getTitle(item),\\n\\t\\t\\t\\timg_replaceWith: item.img\\n\\t\\t\\t}, item);\\n\\n\\t\\t\\tmfp.resizeImage();\\n\\n\\t\\t\\tif(item.hasSize) {\\n\\t\\t\\t\\tif(_imgInterval) clearInterval(_imgInterval);\\n\\n\\t\\t\\t\\tif(item.loadError) {\\n\\t\\t\\t\\t\\ttemplate.addClass('mfp-loading');\\n\\t\\t\\t\\t\\tmfp.updateStatus('error', imgSt.tError.replace('%url%', item.src) );\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\ttemplate.removeClass('mfp-loading');\\n\\t\\t\\t\\t\\tmfp.updateStatus('ready');\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\treturn template;\\n\\t\\t\\t}\\n\\n\\t\\t\\tmfp.updateStatus('loading');\\n\\t\\t\\titem.loading = true;\\n\\n\\t\\t\\tif(!item.hasSize) {\\n\\t\\t\\t\\titem.imgHidden = true;\\n\\t\\t\\t\\ttemplate.addClass('mfp-loading');\\n\\t\\t\\t\\tmfp.findImageSize(item);\\n\\t\\t\\t}\\n\\n\\t\\t\\treturn template;\\n\\t\\t}\\n\\t}\\n});\\n\\n/*>>image*/\\n\\n/*>>zoom*/\\nvar hasMozTransform,\\n\\tgetHasMozTransform = function() {\\n\\t\\tif(hasMozTransform === undefined) {\\n\\t\\t\\thasMozTransform = document.createElement('p').style.MozTransform !== undefined;\\n\\t\\t}\\n\\t\\treturn hasMozTransform;\\n\\t};\\n\\n$.magnificPopup.registerModule('zoom', {\\n\\n\\toptions: {\\n\\t\\tenabled: false,\\n\\t\\teasing: 'ease-in-out',\\n\\t\\tduration: 300,\\n\\t\\topener: function(element) {\\n\\t\\t\\treturn element.is('img') ? element : element.find('img');\\n\\t\\t}\\n\\t},\\n\\n\\tproto: {\\n\\n\\t\\tinitZoom: function() {\\n\\t\\t\\tvar zoomSt = mfp.st.zoom,\\n\\t\\t\\t\\tns = '.zoom',\\n\\t\\t\\t\\timage;\\n\\n\\t\\t\\tif(!zoomSt.enabled || !mfp.supportsTransition) {\\n\\t\\t\\t\\treturn;\\n\\t\\t\\t}\\n\\n\\t\\t\\tvar duration = zoomSt.duration,\\n\\t\\t\\t\\tgetElToAnimate = function(image) {\\n\\t\\t\\t\\t\\tvar newImg = image.clone().removeAttr('style').removeAttr('class').addClass('mfp-animated-image'),\\n\\t\\t\\t\\t\\t\\ttransition = 'all '+(zoomSt.duration/1000)+'s ' + zoomSt.easing,\\n\\t\\t\\t\\t\\t\\tcssObj = {\\n\\t\\t\\t\\t\\t\\t\\tposition: 'fixed',\\n\\t\\t\\t\\t\\t\\t\\tzIndex: 9999,\\n\\t\\t\\t\\t\\t\\t\\tleft: 0,\\n\\t\\t\\t\\t\\t\\t\\ttop: 0,\\n\\t\\t\\t\\t\\t\\t\\t'-webkit-backface-visibility': 'hidden'\\n\\t\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\t\\tt = 'transition';\\n\\n\\t\\t\\t\\t\\tcssObj['-webkit-'+t] = cssObj['-moz-'+t] = cssObj['-o-'+t] = cssObj[t] = transition;\\n\\n\\t\\t\\t\\t\\tnewImg.css(cssObj);\\n\\t\\t\\t\\t\\treturn newImg;\\n\\t\\t\\t\\t},\\n\\t\\t\\t\\tshowMainContent = function() {\\n\\t\\t\\t\\t\\tmfp.content.css('visibility', 'visible');\\n\\t\\t\\t\\t},\\n\\t\\t\\t\\topenTimeout,\\n\\t\\t\\t\\tanimatedImg;\\n\\n\\t\\t\\t_mfpOn('BuildControls'+ns, function() {\\n\\t\\t\\t\\tif(mfp._allowZoom()) {\\n\\n\\t\\t\\t\\t\\tclearTimeout(openTimeout);\\n\\t\\t\\t\\t\\tmfp.content.css('visibility', 'hidden');\\n\\n\\t\\t\\t\\t\\t// Basically, all code below does is clones existing image, puts in on top of the current one and animated it\\n\\n\\t\\t\\t\\t\\timage = mfp._getItemToZoom();\\n\\n\\t\\t\\t\\t\\tif(!image) {\\n\\t\\t\\t\\t\\t\\tshowMainContent();\\n\\t\\t\\t\\t\\t\\treturn;\\n\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\tanimatedImg = getElToAnimate(image);\\n\\n\\t\\t\\t\\t\\tanimatedImg.css( mfp._getOffset() );\\n\\n\\t\\t\\t\\t\\tmfp.wrap.append(animatedImg);\\n\\n\\t\\t\\t\\t\\topenTimeout = setTimeout(function() {\\n\\t\\t\\t\\t\\t\\tanimatedImg.css( mfp._getOffset( true ) );\\n\\t\\t\\t\\t\\t\\topenTimeout = setTimeout(function() {\\n\\n\\t\\t\\t\\t\\t\\t\\tshowMainContent();\\n\\n\\t\\t\\t\\t\\t\\t\\tsetTimeout(function() {\\n\\t\\t\\t\\t\\t\\t\\t\\tanimatedImg.remove();\\n\\t\\t\\t\\t\\t\\t\\t\\timage = animatedImg = null;\\n\\t\\t\\t\\t\\t\\t\\t\\t_mfpTrigger('ZoomAnimationEnded');\\n\\t\\t\\t\\t\\t\\t\\t}, 16); // avoid blink when switching images\\n\\n\\t\\t\\t\\t\\t\\t}, duration); // this timeout equals animation duration\\n\\n\\t\\t\\t\\t\\t}, 16); // by adding this timeout we avoid short glitch at the beginning of animation\\n\\n\\n\\t\\t\\t\\t\\t// Lots of timeouts...\\n\\t\\t\\t\\t}\\n\\t\\t\\t});\\n\\t\\t\\t_mfpOn(BEFORE_CLOSE_EVENT+ns, function() {\\n\\t\\t\\t\\tif(mfp._allowZoom()) {\\n\\n\\t\\t\\t\\t\\tclearTimeout(openTimeout);\\n\\n\\t\\t\\t\\t\\tmfp.st.removalDelay = duration;\\n\\n\\t\\t\\t\\t\\tif(!image) {\\n\\t\\t\\t\\t\\t\\timage = mfp._getItemToZoom();\\n\\t\\t\\t\\t\\t\\tif(!image) {\\n\\t\\t\\t\\t\\t\\t\\treturn;\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\tanimatedImg = getElToAnimate(image);\\n\\t\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t\\tanimatedImg.css( mfp._getOffset(true) );\\n\\t\\t\\t\\t\\tmfp.wrap.append(animatedImg);\\n\\t\\t\\t\\t\\tmfp.content.css('visibility', 'hidden');\\n\\n\\t\\t\\t\\t\\tsetTimeout(function() {\\n\\t\\t\\t\\t\\t\\tanimatedImg.css( mfp._getOffset() );\\n\\t\\t\\t\\t\\t}, 16);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t});\\n\\n\\t\\t\\t_mfpOn(CLOSE_EVENT+ns, function() {\\n\\t\\t\\t\\tif(mfp._allowZoom()) {\\n\\t\\t\\t\\t\\tshowMainContent();\\n\\t\\t\\t\\t\\tif(animatedImg) {\\n\\t\\t\\t\\t\\t\\tanimatedImg.remove();\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\timage = null;\\n\\t\\t\\t\\t}\\n\\t\\t\\t});\\n\\t\\t},\\n\\n\\t\\t_allowZoom: function() {\\n\\t\\t\\treturn mfp.currItem.type === 'image';\\n\\t\\t},\\n\\n\\t\\t_getItemToZoom: function() {\\n\\t\\t\\tif(mfp.currItem.hasSize) {\\n\\t\\t\\t\\treturn mfp.currItem.img;\\n\\t\\t\\t} else {\\n\\t\\t\\t\\treturn false;\\n\\t\\t\\t}\\n\\t\\t},\\n\\n\\t\\t// Get element postion relative to viewport\\n\\t\\t_getOffset: function(isLarge) {\\n\\t\\t\\tvar el;\\n\\t\\t\\tif(isLarge) {\\n\\t\\t\\t\\tel = mfp.currItem.img;\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tel = mfp.st.zoom.opener(mfp.currItem.el || mfp.currItem);\\n\\t\\t\\t}\\n\\n\\t\\t\\tvar offset = el.offset();\\n\\t\\t\\tvar paddingTop = parseInt(el.css('padding-top'),10);\\n\\t\\t\\tvar paddingBottom = parseInt(el.css('padding-bottom'),10);\\n\\t\\t\\toffset.top -= ( $(window).scrollTop() - paddingTop );\\n\\n\\n\\t\\t\\t/*\\n\\n\\t\\t\\tAnimating left + top + width/height looks glitchy in Firefox, but perfect in Chrome. And vice-versa.\\n\\n\\t\\t\\t */\\n\\t\\t\\tvar obj = {\\n\\t\\t\\t\\twidth: el.width(),\\n\\t\\t\\t\\t// fix Zepto height+padding issue\\n\\t\\t\\t\\theight: (_isJQ ? el.innerHeight() : el[0].offsetHeight) - paddingBottom - paddingTop\\n\\t\\t\\t};\\n\\n\\t\\t\\t// I hate to do this, but there is no another option\\n\\t\\t\\tif( getHasMozTransform() ) {\\n\\t\\t\\t\\tobj['-moz-transform'] = obj['transform'] = 'translate(' + offset.left + 'px,' + offset.top + 'px)';\\n\\t\\t\\t} else {\\n\\t\\t\\t\\tobj.left = offset.left;\\n\\t\\t\\t\\tobj.top = offset.top;\\n\\t\\t\\t}\\n\\t\\t\\treturn obj;\\n\\t\\t}\\n\\n\\t}\\n});\\n\\n\\n\\n/*>>zoom*/\\n\\n/*>>iframe*/\\n\\nvar IFRAME_NS = 'iframe',\\n\\t_emptyPage = '//about:blank',\\n\\n\\t_fixIframeBugs = function(isShowing) {\\n\\t\\tif(mfp.currTemplate[IFRAME_NS]) {\\n\\t\\t\\tvar el = mfp.currTemplate[IFRAME_NS].find('iframe');\\n\\t\\t\\tif(el.length) {\\n\\t\\t\\t\\t// reset src after the popup is closed to avoid \\\"video keeps playing after popup is closed\\\" bug\\n\\t\\t\\t\\tif(!isShowing) {\\n\\t\\t\\t\\t\\tel[0].src = _emptyPage;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// IE8 black screen bug fix\\n\\t\\t\\t\\tif(mfp.isIE8) {\\n\\t\\t\\t\\t\\tel.css('display', isShowing ? 'block' : 'none');\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\t};\\n\\n$.magnificPopup.registerModule(IFRAME_NS, {\\n\\n\\toptions: {\\n\\t\\tmarkup: '
'+\\n\\t\\t\\t\\t\\t'
'+\\n\\t\\t\\t\\t\\t''+\\n\\t\\t\\t\\t'
',\\n\\n\\t\\tsrcAction: 'iframe_src',\\n\\n\\t\\t// we don't care and support only one default type of URL by default\\n\\t\\tpatterns: {\\n\\t\\t\\tyoutube: {\\n\\t\\t\\t\\tindex: 'youtube.com',\\n\\t\\t\\t\\tid: 'v=',\\n\\t\\t\\t\\tsrc: '//www.youtube.com/embed/%id%?autoplay=1'\\n\\t\\t\\t},\\n\\t\\t\\tvimeo: {\\n\\t\\t\\t\\tindex: 'vimeo.com/',\\n\\t\\t\\t\\tid: '/',\\n\\t\\t\\t\\tsrc: '//player.vimeo.com/video/%id%?autoplay=1'\\n\\t\\t\\t},\\n\\t\\t\\tgmaps: {\\n\\t\\t\\t\\tindex: '//maps.google.',\\n\\t\\t\\t\\tsrc: '%id%&output=embed'\\n\\t\\t\\t}\\n\\t\\t}\\n\\t},\\n\\n\\tproto: {\\n\\t\\tinitIframe: function() {\\n\\t\\t\\tmfp.types.push(IFRAME_NS);\\n\\n\\t\\t\\t_mfpOn('BeforeChange', function(e, prevType, newType) {\\n\\t\\t\\t\\tif(prevType !== newType) {\\n\\t\\t\\t\\t\\tif(prevType === IFRAME_NS) {\\n\\t\\t\\t\\t\\t\\t_fixIframeBugs(); // iframe if removed\\n\\t\\t\\t\\t\\t} else if(newType === IFRAME_NS) {\\n\\t\\t\\t\\t\\t\\t_fixIframeBugs(true); // iframe is showing\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}// else {\\n\\t\\t\\t\\t\\t// iframe source is switched, don't do anything\\n\\t\\t\\t\\t//}\\n\\t\\t\\t});\\n\\n\\t\\t\\t_mfpOn(CLOSE_EVENT + '.' + IFRAME_NS, function() {\\n\\t\\t\\t\\t_fixIframeBugs();\\n\\t\\t\\t});\\n\\t\\t},\\n\\n\\t\\tgetIframe: function(item, template) {\\n\\t\\t\\tvar embedSrc = item.src;\\n\\t\\t\\tvar iframeSt = mfp.st.iframe;\\n\\n\\t\\t\\t$.each(iframeSt.patterns, function() {\\n\\t\\t\\t\\tif(embedSrc.indexOf( this.index ) > -1) {\\n\\t\\t\\t\\t\\tif(this.id) {\\n\\t\\t\\t\\t\\t\\tif(typeof this.id === 'string') {\\n\\t\\t\\t\\t\\t\\t\\tembedSrc = embedSrc.substr(embedSrc.lastIndexOf(this.id)+this.id.length, embedSrc.length);\\n\\t\\t\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t\\t\\tembedSrc = this.id.call( this, embedSrc );\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\tembedSrc = this.src.replace('%id%', embedSrc );\\n\\t\\t\\t\\t\\treturn false; // break;\\n\\t\\t\\t\\t}\\n\\t\\t\\t});\\n\\n\\t\\t\\tvar dataObj = {};\\n\\t\\t\\tif(iframeSt.srcAction) {\\n\\t\\t\\t\\tdataObj[iframeSt.srcAction] = embedSrc;\\n\\t\\t\\t}\\n\\t\\t\\tmfp._parseMarkup(template, dataObj, item);\\n\\n\\t\\t\\tmfp.updateStatus('ready');\\n\\n\\t\\t\\treturn template;\\n\\t\\t}\\n\\t}\\n});\\n\\n\\n\\n/*>>iframe*/\\n\\n/*>>gallery*/\\n/**\\n * Get looped index depending on number of slides\\n */\\nvar _getLoopedId = function(index) {\\n\\t\\tvar numSlides = mfp.items.length;\\n\\t\\tif(index > numSlides - 1) {\\n\\t\\t\\treturn index - numSlides;\\n\\t\\t} else if(index < 0) {\\n\\t\\t\\treturn numSlides + index;\\n\\t\\t}\\n\\t\\treturn index;\\n\\t},\\n\\t_replaceCurrTotal = function(text, curr, total) {\\n\\t\\treturn text.replace(/%curr%/gi, curr + 1).replace(/%total%/gi, total);\\n\\t};\\n\\n$.magnificPopup.registerModule('gallery', {\\n\\n\\toptions: {\\n\\t\\tenabled: false,\\n\\t\\tarrowMarkup: '',\\n\\t\\tpreload: [0,2],\\n\\t\\tnavigateByImgClick: true,\\n\\t\\tarrows: true,\\n\\n\\t\\ttPrev: 'Previous (Left arrow key)',\\n\\t\\ttNext: 'Next (Right arrow key)',\\n\\t\\ttCounter: '%curr% of %total%'\\n\\t},\\n\\n\\tproto: {\\n\\t\\tinitGallery: function() {\\n\\n\\t\\t\\tvar gSt = mfp.st.gallery,\\n\\t\\t\\t\\tns = '.mfp-gallery';\\n\\n\\t\\t\\tmfp.direction = true; // true - next, false - prev\\n\\n\\t\\t\\tif(!gSt || !gSt.enabled ) return false;\\n\\n\\t\\t\\t_wrapClasses += ' mfp-gallery';\\n\\n\\t\\t\\t_mfpOn(OPEN_EVENT+ns, function() {\\n\\n\\t\\t\\t\\tif(gSt.navigateByImgClick) {\\n\\t\\t\\t\\t\\tmfp.wrap.on('click'+ns, '.mfp-img', function() {\\n\\t\\t\\t\\t\\t\\tif(mfp.items.length > 1) {\\n\\t\\t\\t\\t\\t\\t\\tmfp.next();\\n\\t\\t\\t\\t\\t\\t\\treturn false;\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t});\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t_document.on('keydown'+ns, function(e) {\\n\\t\\t\\t\\t\\tif (e.keyCode === 37) {\\n\\t\\t\\t\\t\\t\\tmfp.prev();\\n\\t\\t\\t\\t\\t} else if (e.keyCode === 39) {\\n\\t\\t\\t\\t\\t\\tmfp.next();\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t});\\n\\t\\t\\t});\\n\\n\\t\\t\\t_mfpOn('UpdateStatus'+ns, function(e, data) {\\n\\t\\t\\t\\tif(data.text) {\\n\\t\\t\\t\\t\\tdata.text = _replaceCurrTotal(data.text, mfp.currItem.index, mfp.items.length);\\n\\t\\t\\t\\t}\\n\\t\\t\\t});\\n\\n\\t\\t\\t_mfpOn(MARKUP_PARSE_EVENT+ns, function(e, element, values, item) {\\n\\t\\t\\t\\tvar l = mfp.items.length;\\n\\t\\t\\t\\tvalues.counter = l > 1 ? _replaceCurrTotal(gSt.tCounter, item.index, l) : '';\\n\\t\\t\\t});\\n\\n\\t\\t\\t_mfpOn('BuildControls' + ns, function() {\\n\\t\\t\\t\\tif(mfp.items.length > 1 && gSt.arrows && !mfp.arrowLeft) {\\n\\t\\t\\t\\t\\tvar markup = gSt.arrowMarkup,\\n\\t\\t\\t\\t\\t\\tarrowLeft = mfp.arrowLeft = $( markup.replace(/%title%/gi, gSt.tPrev).replace(/%dir%/gi, 'left') ).addClass(PREVENT_CLOSE_CLASS),\\n\\t\\t\\t\\t\\t\\tarrowRight = mfp.arrowRight = $( markup.replace(/%title%/gi, gSt.tNext).replace(/%dir%/gi, 'right') ).addClass(PREVENT_CLOSE_CLASS);\\n\\n\\t\\t\\t\\t\\tarrowLeft.click(function() {\\n\\t\\t\\t\\t\\t\\tmfp.prev();\\n\\t\\t\\t\\t\\t});\\n\\t\\t\\t\\t\\tarrowRight.click(function() {\\n\\t\\t\\t\\t\\t\\tmfp.next();\\n\\t\\t\\t\\t\\t});\\n\\n\\t\\t\\t\\t\\tmfp.container.append(arrowLeft.add(arrowRight));\\n\\t\\t\\t\\t}\\n\\t\\t\\t});\\n\\n\\t\\t\\t_mfpOn(CHANGE_EVENT+ns, function() {\\n\\t\\t\\t\\tif(mfp._preloadTimeout) clearTimeout(mfp._preloadTimeout);\\n\\n\\t\\t\\t\\tmfp._preloadTimeout = setTimeout(function() {\\n\\t\\t\\t\\t\\tmfp.preloadNearbyImages();\\n\\t\\t\\t\\t\\tmfp._preloadTimeout = null;\\n\\t\\t\\t\\t}, 16);\\n\\t\\t\\t});\\n\\n\\n\\t\\t\\t_mfpOn(CLOSE_EVENT+ns, function() {\\n\\t\\t\\t\\t_document.off(ns);\\n\\t\\t\\t\\tmfp.wrap.off('click'+ns);\\n\\t\\t\\t\\tmfp.arrowRight = mfp.arrowLeft = null;\\n\\t\\t\\t});\\n\\n\\t\\t},\\n\\t\\tnext: function() {\\n\\t\\t\\tmfp.direction = true;\\n\\t\\t\\tmfp.index = _getLoopedId(mfp.index + 1);\\n\\t\\t\\tmfp.updateItemHTML();\\n\\t\\t},\\n\\t\\tprev: function() {\\n\\t\\t\\tmfp.direction = false;\\n\\t\\t\\tmfp.index = _getLoopedId(mfp.index - 1);\\n\\t\\t\\tmfp.updateItemHTML();\\n\\t\\t},\\n\\t\\tgoTo: function(newIndex) {\\n\\t\\t\\tmfp.direction = (newIndex >= mfp.index);\\n\\t\\t\\tmfp.index = newIndex;\\n\\t\\t\\tmfp.updateItemHTML();\\n\\t\\t},\\n\\t\\tpreloadNearbyImages: function() {\\n\\t\\t\\tvar p = mfp.st.gallery.preload,\\n\\t\\t\\t\\tpreloadBefore = Math.min(p[0], mfp.items.length),\\n\\t\\t\\t\\tpreloadAfter = Math.min(p[1], mfp.items.length),\\n\\t\\t\\t\\ti;\\n\\n\\t\\t\\tfor(i = 1; i <= (mfp.direction ? preloadAfter : preloadBefore); i++) {\\n\\t\\t\\t\\tmfp._preloadItem(mfp.index+i);\\n\\t\\t\\t}\\n\\t\\t\\tfor(i = 1; i <= (mfp.direction ? preloadBefore : preloadAfter); i++) {\\n\\t\\t\\t\\tmfp._preloadItem(mfp.index-i);\\n\\t\\t\\t}\\n\\t\\t},\\n\\t\\t_preloadItem: function(index) {\\n\\t\\t\\tindex = _getLoopedId(index);\\n\\n\\t\\t\\tif(mfp.items[index].preloaded) {\\n\\t\\t\\t\\treturn;\\n\\t\\t\\t}\\n\\n\\t\\t\\tvar item = mfp.items[index];\\n\\t\\t\\tif(!item.parsed) {\\n\\t\\t\\t\\titem = mfp.parseEl( index );\\n\\t\\t\\t}\\n\\n\\t\\t\\t_mfpTrigger('LazyLoad', item);\\n\\n\\t\\t\\tif(item.type === 'image') {\\n\\t\\t\\t\\titem.img = $('').on('load.mfploader', function() {\\n\\t\\t\\t\\t\\titem.hasSize = true;\\n\\t\\t\\t\\t}).on('error.mfploader', function() {\\n\\t\\t\\t\\t\\titem.hasSize = true;\\n\\t\\t\\t\\t\\titem.loadError = true;\\n\\t\\t\\t\\t\\t_mfpTrigger('LazyLoadError', item);\\n\\t\\t\\t\\t}).attr('src', item.src);\\n\\t\\t\\t}\\n\\n\\n\\t\\t\\titem.preloaded = true;\\n\\t\\t}\\n\\t}\\n});\\n\\n/*>>gallery*/\\n\\n/*>>retina*/\\n\\nvar RETINA_NS = 'retina';\\n\\n$.magnificPopup.registerModule(RETINA_NS, {\\n\\toptions: {\\n\\t\\treplaceSrc: function(item) {\\n\\t\\t\\treturn item.src.replace(/\\\\.\\\\w+$/, function(m) { return '@2x' + m; });\\n\\t\\t},\\n\\t\\tratio: 1 // Function or number. Set to 1 to disable.\\n\\t},\\n\\tproto: {\\n\\t\\tinitRetina: function() {\\n\\t\\t\\tif(window.devicePixelRatio > 1) {\\n\\n\\t\\t\\t\\tvar st = mfp.st.retina,\\n\\t\\t\\t\\t\\tratio = st.ratio;\\n\\n\\t\\t\\t\\tratio = !isNaN(ratio) ? ratio : ratio();\\n\\n\\t\\t\\t\\tif(ratio > 1) {\\n\\t\\t\\t\\t\\t_mfpOn('ImageHasSize' + '.' + RETINA_NS, function(e, item) {\\n\\t\\t\\t\\t\\t\\titem.img.css({\\n\\t\\t\\t\\t\\t\\t\\t'max-width': item.img[0].naturalWidth / ratio,\\n\\t\\t\\t\\t\\t\\t\\t'width': '100%'\\n\\t\\t\\t\\t\\t\\t});\\n\\t\\t\\t\\t\\t});\\n\\t\\t\\t\\t\\t_mfpOn('ElementParse' + '.' + RETINA_NS, function(e, item) {\\n\\t\\t\\t\\t\\t\\titem.src = st.replaceSrc(item, ratio);\\n\\t\\t\\t\\t\\t});\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t}\\n\\t}\\n});\\n\\n/*>>retina*/\\n _checkInstance(); }));}\\n\\n\\n\\t\\t\\t\\titem.preloaded = true;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t});\\n\\n\\t/*>>gallery*/\\n\\n\\t/*>>retina*/\\n\\n\\tvar RETINA_NS = 'retina';\\n\\n\\t$.magnificPopup.registerModule(RETINA_NS, {\\n\\t\\toptions: {\\n\\t\\t\\treplaceSrc: function (item) {\\n\\t\\t\\t\\treturn item.src.replace(/\\\\.\\\\w+$/, function (m) { return '@2x' + m; });\\n\\t\\t\\t},\\n\\t\\t\\tratio: 1 // Function or number. Set to 1 to disable.\\n\\t\\t},\\n\\t\\tproto: {\\n\\t\\t\\tinitRetina: function () {\\n\\t\\t\\t\\tif (window.devicePixelRatio > 1) {\\n\\n\\t\\t\\t\\t\\tvar st = mfp.st.retina,\\n\\t\\t\\t\\t\\t\\tratio = st.ratio;\\n\\n\\t\\t\\t\\t\\tratio = !isNaN(ratio) ? ratio : ratio();\\n\\n\\t\\t\\t\\t\\tif (ratio > 1) {\\n\\t\\t\\t\\t\\t\\t_mfpOn('ImageHasSize' + '.' + RETINA_NS, function (e, item) {\\n\\t\\t\\t\\t\\t\\t\\titem.img.css({\\n\\t\\t\\t\\t\\t\\t\\t\\t'max-width': item.img[0].naturalWidth / ratio,\\n\\t\\t\\t\\t\\t\\t\\t\\t'width': '100%'\\n\\t\\t\\t\\t\\t\\t\\t});\\n\\t\\t\\t\\t\\t\\t});\\n\\t\\t\\t\\t\\t\\t_mfpOn('ElementParse' + '.' + RETINA_NS, function (e, item) {\\n\\t\\t\\t\\t\\t\\t\\titem.src = st.replaceSrc(item, ratio);\\n\\t\\t\\t\\t\\t\\t});\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t}\\n\\t\\t}\\n\\t});\\n\\n\\t/*>>retina*/\\n\\t_checkInstance();\\n}));\"","require(\"!!/tmp/build_74596f24/node_modules/script-loader/addScript.js\")(require(\"!!/tmp/build_74596f24/node_modules/raw-loader/index.js!/tmp/build_74596f24/app/assets/es6/vendor/jquery.magnific-popup.js\"))"],"sourceRoot":""}