Partnering Partnering with the Department of Child Safety to sponsor 200 kids, we will have ornaments for people to choose beginning October 31. Purchase the gift on the ornament and return the gift to Pantano by Dec. 3. DCS will deliver the gifts to the child.
This website uses cookies to enhance your experience. Learn more.
Cookie Preferences
document.addEventListener("DOMContentLoaded", function () {
const selector = document.getElementById("contentSelector");
if (!selector) return;
const sections = document.querySelectorAll(".campus-content");
function showSelectedSection(value) {
let shown = false;
sections.forEach(sec => {
const match = sec.id === value;
sec.style.display = match ? "block" : "none";
if (match) shown = true;
});
// Fallback: if the value didn't match any section, show the first
if (!shown && sections[0]) sections[0].style.display = "block";
}
showSelectedSection(selector.value);
selector.addEventListener("change", e => showSelectedSection(e.target.value));
});