Skip to content

Congratulations to the 2015 CWCF Scholarship Winners!

It is with great pride that we congratulate the newest 2015 CWCF Scholarship Recipients. These 17 students have displayed academic excellence, exemplary leadership, and dedication to their careers. Meet the recipients:

Bottom row L to R: William Owens, Brittney Miller, Joshua Intrator, Yizzette Gonzalez Rivera, David Guerrero, Danielle Settembre, Jonathan Calixto, Leslie Ramirez. Top row L to R: Jarel Ramirez, Alexandra Gordon, Abigail Laissen, Husam Zayed, Natasha Leslie, Zara Moloney, Ayanda Watson-Galloway, Kevin Zuniga.

Not photographed: Carlos Colon

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'); } }); }); });