Célébrons
150 ans !
Celebrating
150 years!
Histoire
History
Drave sur la rivière
River Logging
Centenaire de Danford Lake 1976
Danford Lake Centennial 1976
script> document.addEventListener("DOMContentLoaded", function () { const reels = document.querySelectorAll(".gallery-reel"); reels.forEach((reel) => { if (reel.dataset.autoplayStarted === "true") return; reel.dataset.autoplayStarted = "true"; const items = reel.querySelectorAll(".gallery-reel-item"); const nextButton = reel.querySelector( ".gallery-reel-control-btn:nth-of-type(2), .gallery-reel-next, button[aria-label*='Next'], button[aria-label*='next']" ); if (!items.length || !nextButton) return; let index = 0; setInterval(function () { index++; if (index >= items.length) { index = 0; items[0].scrollIntoView({ behavior: "smooth", block: "nearest", inline: "start" }); } else { nextButton.click(); } }, 2000); //these are in ms. Cody }); });