var VideoGallery={selector:".videogallery",initialize:function(){this.videoGallerySlider()},videoGallerySlider:function(){var e=this;$(".videogallery").length&&$(".videogallery").each(function(){var i=$(this);i.find(".thumbnails .slides").on("click","a.play-video",function(l){var t=$(this);l.preventDefault(),i.find(".thumbnails .slides a").removeClass("active"),t.addClass("active"),e.getVideo(t,i)})})},getVideo:function(e,i){var l=i.find(".player").eq(0);l.find(".embed-responsive iframe").replaceWith('            <iframe class="embed-responsive-item" allowfullscreen title="'+e.attr("title")+'"             src="'+e.attr("href")+'"></iframe>'),l.prev(".video-title").html(e.attr("title"))}};jQuery(document).ready(function(){VideoGallery.initialize()});