Skip to content

CW Meets State Legislators

A CW team of students, staff, and a graduate traveled to Albany to meet with New York State legislators about the importance of funding from the state Tuition Assistance Program (TAP). Students Jenny Arpi, Alexis D’Ambrosio, Etosha Dawson, and Balbino Rodriguez were joined by graduate Jessica Perilla, New Student Financial Assistance Counselor Perry Brown, and Assistant Director for Student Activities Terry Keyes in offering testimonials about the invaluable support TAP provides students across the state. Lawmakers and their staff expressed appreciation for the conversations and pledged to do their best to see TAP funding continue.

document.addEventListener("DOMContentLoaded", function() { // Get all accordion toggle elements var accordions = document.querySelectorAll('.accordion-toggle'); // Add click event listeners to each accordion toggle accordions.forEach(function(accordion) { accordion.addEventListener('click', function() { // Get the panel-collapse element directly following this accordion-toggle var panelCollapse = this.nextElementSibling; // Check if this panel-collapse is currently open var isOpen = panelCollapse.classList.contains('open'); // Remove 'open' class from all panel-collapses accordions.forEach(function(acc) { var collapse = acc.nextElementSibling; collapse.classList.remove('open'); }); // Toggle 'open' class only on the clicked panel-collapse if (!isOpen) { panelCollapse.classList.add('open'); } }); }); });