










![Photo 3 [Stage-1].jpg](https://images.squarespace-cdn.com/content/v1/5549550fe4b0c34cae590a68/1457500333814-GPXVK4F30RSPBRJEG4W1/Photo+3+%5BStage-1%5D.jpg)

// Function to shuffle array function shuffleArray(array) { for (var i = array.length - 1; i > 0; i--) { var j = Math.floor(Math.random() * (i + 1)); var temp = array[i]; array[i] = array[j]; array[j] = temp; } return array; } // Function to randomize gallery images function randomizeGallery() { var gallery = document.getElementById('yui_3_17_2_1_1712030318851_762'); // Replace 'your-gallery-id' with the ID of your gallery if (gallery) { var images = Array.from(gallery.querySelectorAll('.sqs-gallery-design-stacked .sqs-gallery-block-grid .sqs-gallery-design-stacked-slide')); var parent = images[0].parentNode; var shuffledImages = shuffleArray(images); shuffledImages.forEach(function(image) { parent.appendChild(image); }); } } // Randomize gallery on page load document.addEventListener('DOMContentLoaded', function() { randomizeGallery(); });