Skip to content

NAMI on Campus Bake Sale

The Project Management class joined the NAMI on Campus Club to organize a bake sale at CW. This was a fundraiser to promote mental awareness in the CW community. All proceeds will go directly to NAMI Westchester.

NAMI is a unique organization that offers the kind of understanding and care that only those who have lived the experience of mental illness can provide. They offer multiple programs to provide support to those that have a mental illness as well as those with a loved one that has a mental illness.

Thanks to the students, staff and faculty for supporting the CW’s NAMI on Campus Club! To learn more about NAMI please visit: https://www.nami.org/About-NAMI

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