Back to blog

More FEDtalks Now Available!

At this year’s Summer Meeting, we invited state leaders and our Federation interns to take five minutes to share a big idea, talk through an innovative strategy, or offer up an exciting concept. We called the presentations FEDtalks, and since the meeting wrapped, we keep getting requests to publish the videos online.

Here's a new batch of the amazing FEDtalks -- watch them now! These talks and more are also available on our YouTube Channel!

Fist, Troy Stevenson, Executive Director at Garden State Equality, talks about their bill to ban conversion therapy, which was just signed into law by New Jersey Governor Chris Christie.

 

 

 

Second, Marina Santiago, Intern at Equality Texas, talks about her work with local homeless shelters in Austin.

 

 

 

Third, Ted Martin, Executive Director at Equality Pennsylvania, talks about the organization's work to build an LGBT Equality Caucus in the Pennsylvania General Assembly.

 

 

 

/* ============================================= 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 */ }); });