<script>document.addEventListener("DOMContentLoaded", function () {  document.querySelectorAll(".gallery").forEach(gallery => {    const altSource = gallery.querySelector(".gallerymoneta-alt");    if (!altSource) return;    const altText = altSource.textContent.trim();    if (!altText) return;    gallery.querySelectorAll("img").forEach(img => {      img.setAttribute("alt", altText);    });  });});</script>