Back to blog

FEDtalks Daily: Ali Vander Zanden of EqualityMaine--Watch Now!

Our seventh FEDtalk given at the Summer Meeting 2013 is from Ali Vander Zanden, Political Director at EqualityMaine.

 

Each year our Annual Summer Meeting brings LGBT leaders from across the nation together to share ideas and forge connections. But at this year’s Meeting, we introduced a new session that quickly became a breakout star of the conference: FEDtalks.

For FEDtalks, we invited state leaders and our five Federation interns to take five minutes to share a big idea, talk through an innovative strategy, or offer up an exciting concept. We were amazed at what we got!

FEDtalks were such a big hit that we wanted to share them with everyone, not just the folks who joined us at Summer Meeting.

Each day we’ll be releasing one FEDtalk on our blog -- so keep checking back!

/* ============================================= Timed Popup — Shows after a delay on every page Closes on: X button, overlay click, or Escape key Once per session (won't show again until new session) ============================================= */ document.addEventListener("DOMContentLoaded", function () { /* Target the popup elements by their Webflow classes */ const popup = document.querySelector(".modal-popup_wrapper"); const closeBtn = document.querySelector(".modal-popup_close"); const overlay = document.querySelector(".modal-popup_overlay"); /* Check if popup has already been seen this session */ if (sessionStorage.getItem("popupSeen")) return; /* Show the popup after a delay Change 4000 to adjust timing (1000 = 1 second) */ setTimeout(function () { popup.style.display = "flex"; popup.removeAttribute("aria-hidden"); closeBtn.focus(); /* Moves focus to close button for accessibility */ }, 4000); /* Close the popup and record the session */ function closePopup() { popup.style.display = "none"; popup.setAttribute("aria-hidden", "true"); sessionStorage.setItem("popupSeen", "true"); /* Prevents popup from showing again this session */ } /* Close triggers */ closeBtn.addEventListener("click", closePopup); /* X button */ overlay.addEventListener("click", closePopup); /* Clicking the dim background */ document.addEventListener("keydown", function (e) { if (e.key === "Escape") closePopup(); /* Escape key */ }); });