$(document).ready(function () { // floor plans $('.plan-title').click(function () { //set active class $('.plan-title').removeClass("active"); var thisfloorplangroup = $(this).closest('.floor-plan-group'); thisfloorplangroup.find(".back").fadeIn(); $('.floor-plan-group').not(thisfloorplangroup).hide(); $(this).addClass("active"); // hide all plan contents $('.plan-content').slideUp("fast"); // show related content $('#' + $(this).data("plan")).slideToggle("fast"); }); $('.floor-plan-group .back').click(function () { $(this).fadeOut(); $('.floor-plan-group').show(); $('.plan-content').slideUp("fast"); }); var el = document.querySelector('.floor-plan-image'); setLG(el); el = document.querySelector('.floor-plan-image2'); setLG(el); el = document.querySelector('.floor-plan-image3'); setLG(el); el = document.querySelector('.floor-plan-image4'); setLG(el); el = document.querySelector('.floor-plan-image5'); setLG(el); el = document.querySelector('.floor-plan-image6'); setLG(el); }); function setLG(el) { lightGallery(el, { loop: true, fourceAutoply: false, autoplay: false, thumbnail: false, pager: $(window).width() >= 768 ? true : false, speed: 400, scale: 1, keypress: true, mode: 'lg-slide', cssEasing: 'cubic-bezier(0.25, 0, 0.25, 1)' }); }