});
// Make Slideshow Images Clickable
let slideshowImages = document.querySelectorAll('.sqs-gallery-container img');
slideshowImages.forEach(image => {
image.style.cursor = "pointer"; // Change cursor to indicate clickability
image.addEventListener("click", function() {
window.location.href = "/editorial"; // Redirect to Editorial page
});
});
});