jQuery(document).ready(function($) {//* Match Height for NextGen Gallery Photo Tour (*/photo-tour/)
$(function() {
$('.ngg-gallery-thumbnail-box').matchHeight();
});
console.log("Hello!");
});
(function($) {
//remove a tag from ngg slideshow images to prevent redirecting to image file
$('.ngg-gallery-slideshow-image img').each(function(){
$(this).unwrap('a');
});
// add slide next when the image is clicked to replicate the old ngg slideshow function
$('.ngg-slideshow').click(function(){
$('.ngg-slideshow').slick('slickNext');
});
})( jQuery );