';$body.appendChild($modal);$modalInner = $('#' + this.id + '-modal .inner');$modalImage = $('#' + this.id + '-modal img');$modalImage.addEventListener('load', function() {$modal.classList.add('done');setTimeout(function() {if (!$modal.classList.contains('visible'))return;$modal.classList.add('loaded');setTimeout(function() {$modal.classList.remove('switching', 'from-left', 'from-right', 'done');}, _this.delay);}, ($modal.classList.contains('switching') ? 0 : _this.delay));});$modalImage.addEventListener('contextmenu', function() {if (_this.protect)event.preventDefault();}, true);$modalImage.addEventListener('dragstart', function() {if (_this.protect)event.preventDefault();}, true);$modalNext = $('#' + this.id + '-modal .next');$modalPrevious = $('#' + this.id + '-modal .previous');$modal.show = function(index, offset, direction) {var item,i, j, found;if (_this.locked)return;if (typeof index != 'number')index = _this.current;if (typeof offset == 'number') {found = false;j = 0;for (j = 0; j < _this.$links.length; j++) {index += offset;if (index < 0)index = _this.$links.length - 1; else if (index >= _this.$links.length)index = 0;if (index == _this.current)break;item = _this.$links.item(index);if (!item)break;if (item.dataset.lightboxIgnore != '1') {found = true;break;}}if (!found)return;} else {if (index < 0)index = _this.$links.length - 1; else if (index >= _this.$links.length)index = 0;if (index == _this.current)return;item = _this.$links.item(index);if (!item)return;if (item.dataset.lightboxIgnore == '1')return;}if (client.mobile)_this.zoomIntervalId = setInterval(function() {_this.zoomHandler();}, 250);_this.locked = true;if (_this.current !== null) {$modal.classList.remove('loaded');$modal.classList.add('switching');switch (direction) {case -1:$modal.classList.add('from-left');break;case 1:$modal.classList.add('from-right');break;default:break;}setTimeout(function() {_this.current = index;$modalImage.src = item.href;setTimeout(function() {$modal.focus();_this.locked = false;}, _this.delay);}, _this.delay);} else {_this.current = index;$modalImage.src = item.href;$modal.classList.add('visible');setTimeout(function() {$modal.focus();_this.locked = false;}, _this.delay);}};$modal.hide = function() {if (_this.locked)return;if (!$modal.classList.contains('visible'))return;_this.locked = true;$modal.classList.remove('visible');$modal.classList.remove('loaded');$modal.classList.remove('switching', 'from-left', 'from-right', 'done');clearInterval(_this.zoomIntervalId);setTimeout(function() {$modalImage.src = '';_this.locked = false;$body.focus();_this.current = null;}, _this.delay);};$modal.next = function(direction) {$modal.show(null, 1, direction);};$modal.previous = function(direction) {$modal.show(null, -1, direction);};$modal.first = function() {$modal.show(0);};$modal.last = function() {$modal.show(_this.$links.length - 1);};$modalInner.addEventListener('touchstart', function(event) {if (!_this.navigation)return;if (event.touches.length > 1)return;dragStart = {x: event.touches[0].clientX,y: event.touches[0].clientY};});$modalInner.addEventListener('touchmove', function(event) {var dx, dy;if (!_this.navigation)return;if (!dragStart|| event.touches.length > 1)return;dragEnd = {x: event.touches[0].clientX,y: event.touches[0].clientY};dx = dragStart.x - dragEnd.x;dy = dragStart.y - dragEnd.y;if (Math.abs(dx) < 50)return;event.preventDefault();if (dx > 0)$modal.next(-1); else if (dx < 0)$modal.previous(1);});$modalInner.addEventListener('touchend', function(event) {if (!_this.navigation)return;dragStart = null;dragEnd = null;});$modal.addEventListener('click', function(event) {$modal.hide();});$modal.addEventListener('keydown', function(event) {if (!$modal.classList.contains('visible'))return;switch (event.keyCode) {case 39:case 32:if (!_this.navigation)break;event.preventDefault();event.stopPropagation();$modal.next();break;case 37:if (!_this.navigation)break;event.preventDefault();event.stopPropagation();$modal.previous();break;case 36:if (!_this.navigation)break;event.preventDefault();event.stopPropagation();$modal.first();break;case 35:if (!_this.navigation)break;event.preventDefault();event.stopPropagation();$modal.last();break;case 27:event.preventDefault();event.stopPropagation();$modal.hide();break;}});$modalNext.addEventListener('click', function(event) {$modal.next();});$modalPrevious.addEventListener('click', function(event) {$modal.previous();});this.$modal = $modal;this.$modalImage = $modalImage;this.$modalNext = $modalNext;this.$modalPrevious = $modalPrevious;};lightboxGallery.prototype.show = function(href, config) {this.$links = config.$links;this.navigation = config.navigation;this.mobile = config.mobile;this.mobileNavigation = config.mobileNavigation;this.protect = config.protect;if (this.navigation) {this.$modalNext.style.display = '';this.$modalPrevious.style.display = '';if (client.mobile&& !this.mobileNavigation) {this.$modalNext.style.display = 'none';this.$modalPrevious.style.display = 'none';}} else {this.$modalNext.style.display = 'none';this.$modalPrevious.style.display = 'none';}if (this.protect) {this.$modalImage.style.WebkitTouchCallout = 'none';this.$modalImage.style.userSelect = 'none';} else {this.$modalImage.style.WebkitTouchCallout = '';this.$modalImage.style.userSelect = '';}if (client.mobile && !this.mobile)return;this.$modal.show(href);};lightboxGallery.prototype.zoomHandler = function() {var threshold = window.matchMedia('(orientation: portrait)').matches ? 50 : 100;if (window.outerWidth > window.innerWidth + threshold)this.$modal.classList.add('zooming'); else this.$modal.classList.remove('zooming');};var _lightboxGallery = new lightboxGallery;_lightboxGallery.init({id: 'gallery04',navigation: true,mobile: true,mobileNavigation: true,});_lightboxGallery.init({id: 'gallery02',navigation: true,mobile: true,mobileNavigation: true,});_lightboxGallery.init({id: 'gallery01',navigation: true,mobile: true,mobileNavigation: true,});_lightboxGallery.init({id: 'gallery07',navigation: true,mobile: true,mobileNavigation: true,});_lightboxGallery.init({id: 'gallery08',navigation: true,mobile: true,mobileNavigation: true,});_lightboxGallery.init({id: 'gallery03',navigation: true,mobile: true,mobileNavigation: true,});_lightboxGallery.init({id: 'gallery10',navigation: true,mobile: true,mobileNavigation: true,});_lightboxGallery.init({id: 'gallery09',navigation: true,mobile: true,mobileNavigation: true,});_lightboxGallery.init({id: 'gallery06',navigation: true,mobile: true,mobileNavigation: true,});_lightboxGallery.init({id: 'gallery05',navigation: true,mobile: true,mobileNavigation: true,});(function() {new slideshowBackground('slideshow05', {target: '#slideshow05 .bg',wrapper: '#slideshow05 .content',wait: 0,defer: true,navigation: false,order: 'default',preserveImageAspectRatio: false,transition: {style: 'crossfade',speed: 1500,delay: 2000,resume: false,},images: [{src: 'assets/images/slideshow05-e65591ea.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Cocca page 1',},{src: 'assets/images/slideshow05-53e8eb82.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Cocca page 2',},{src: 'assets/images/slideshow05-2f36a205.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Cocca page 3',},{src: 'assets/images/slideshow05-72f15579.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Cocca page 4',},]});})();(function() {new slideshowBackground('slideshow04', {target: '#slideshow04 .bg',wrapper: '#slideshow04 .content',wait: 0,defer: true,navigation: false,order: 'default',preserveImageAspectRatio: false,transition: {style: 'crossfade',speed: 1500,delay: 2000,resume: false,},images: [{src: 'assets/images/slideshow04-9f016c53.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Kim page 1',},{src: 'assets/images/slideshow04-aa82bad8.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Kim page 2',},{src: 'assets/images/slideshow04-ee5c7ee2.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Kim page 3',},{src: 'assets/images/slideshow04-c9a6b57b.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Kim page 4',},{src: 'assets/images/slideshow04-0c3b5430.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Kim page 5',},{src: 'assets/images/slideshow04-39fd6739.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Kim page 6',},{src: 'assets/images/slideshow04-aa285ea0.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Kim page 7',},{src: 'assets/images/slideshow04-c6e5e6b2.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Kim page 8',},{src: 'assets/images/slideshow04-b9bb6845.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Kim page 9',},{src: 'assets/images/slideshow04-0a698f82.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Kim page 10',},]});})();(function() {new slideshowBackground('slideshow03', {target: '#slideshow03 .bg',wrapper: '#slideshow03 .content',wait: 0,defer: true,navigation: false,order: 'default',preserveImageAspectRatio: false,transition: {style: 'crossfade',speed: 1500,delay: 2000,resume: false,},images: [{src: 'assets/images/slideshow03-fff43bc7.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Chels page 1',},{src: 'assets/images/slideshow03-4aa73fa5.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Chels page 2',},{src: 'assets/images/slideshow03-b3bea3ce.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Chels page 3',},{src: 'assets/images/slideshow03-57a2320e.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Chels page 4',},{src: 'assets/images/slideshow03-4ec34aa6.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Chels page 5',},{src: 'assets/images/slideshow03-621100c8.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Chels page 6',},{src: 'assets/images/slideshow03-7166b2b2.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Chels page 7',},]});})();(function() {new slideshowBackground('slideshow07', {target: '#slideshow07 .bg',wrapper: '#slideshow07 .content',wait: 0,defer: true,navigation: false,order: 'default',preserveImageAspectRatio: false,transition: {style: 'crossfade',speed: 1500,delay: 2000,resume: false,},images: [{src: 'assets/images/slideshow07-b178bc80.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Sherly page 1',},{src: 'assets/images/slideshow07-3fb13a30.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Sherly page 2',},{src: 'assets/images/slideshow07-3bb7f6ef.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Sherly page 3',},{src: 'assets/images/slideshow07-27cde805.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Sherly page 4',},{src: 'assets/images/slideshow07-e8735d36.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Sherly page 5',},{src: 'assets/images/slideshow07-0197c47e.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Sherly page 6',},]});})();(function() {new slideshowBackground('slideshow06', {target: '#slideshow06 .bg',wrapper: '#slideshow06 .content',wait: 0,defer: true,navigation: false,order: 'default',preserveImageAspectRatio: false,transition: {style: 'crossfade',speed: 1500,delay: 2000,resume: false,},images: [{src: 'assets/images/slideshow06-ca323f69.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Blu page 1',},{src: 'assets/images/slideshow06-b610e728.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Blu page 2',},{src: 'assets/images/slideshow06-b7983713.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Blu page 3',},{src: 'assets/images/slideshow06-1c83cf13.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Blu page 4',},]});})();(function() {new slideshowBackground('slideshow09', {target: '#slideshow09 .bg',wrapper: '#slideshow09 .content',wait: 0,defer: true,navigation: false,order: 'default',preserveImageAspectRatio: false,transition: {style: 'crossfade',speed: 1500,delay: 2000,resume: false,},images: [{src: 'assets/images/slideshow09-ce2277c1.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Marid page 1',},{src: 'assets/images/slideshow09-351942d4.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Marid page 2',},{src: 'assets/images/slideshow09-191de594.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Marid page 3',},{src: 'assets/images/slideshow09-e1d0212a.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Marid page 4',},]});})();(function() {new slideshowBackground('slideshow01', {target: '#slideshow01 .bg',wrapper: '#slideshow01 .content',wait: 0,defer: true,navigation: false,order: 'default',preserveImageAspectRatio: false,transition: {style: 'crossfade',speed: 1500,delay: 2000,resume: false,},images: [{src: 'assets/images/slideshow01-906392a9.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Calico page 1',},{src: 'assets/images/slideshow01-643f0348.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Calico page 2',},]});})();(function() {new slideshowBackground('slideshow10', {target: '#slideshow10 .bg',wrapper: '#slideshow10 .content',wait: 0,defer: true,navigation: false,order: 'default',preserveImageAspectRatio: false,transition: {style: 'crossfade',speed: 1500,delay: 2000,resume: false,},images: [{src: 'assets/images/slideshow10-b4ad3626.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Silvi page 1',},{src: 'assets/images/slideshow10-35a218b4.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Silvi page 2',},{src: 'assets/images/slideshow10-b14f61a7.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Silvi page 3',},{src: 'assets/images/slideshow10-a3d6967b.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Silvi page 4',},]});})();(function() {new slideshowBackground('slideshow02', {target: '#slideshow02 .bg',wrapper: '#slideshow02 .content',wait: 0,defer: true,navigation: false,order: 'default',preserveImageAspectRatio: false,transition: {style: 'crossfade',speed: 1500,delay: 2000,resume: false,},images: [{src: 'assets/images/slideshow02-a9db8550.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Justin page 1',},{src: 'assets/images/slideshow02-585a8ba9.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Justin page 2',},{src: 'assets/images/slideshow02-03414d76.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Justin page 3',},{src: 'assets/images/slideshow02-fbfaf810.jpg?v=0479336d',position: 'center',motion: 'none',speed: 2,caption: 'Justin page 4',},]});})();onvisible.add('#image09', { style: 'fade-in', speed: 1000, intensity: 5, threshold: 3, delay: 0, replay: false });onvisible.add('#container04', { style: 'fade-in', speed: 1000, intensity: 5, threshold: 3, delay: 0, replay: true });onvisible.add('#container03', { style: 'fade-in', speed: 1000, intensity: 5, threshold: 3, delay: 0, replay: true });onvisible.add('#container02', { style: 'fade-in', speed: 1000, intensity: 5, threshold: 3, delay: 0, replay: true });})();