Skip to content

CW Walks for NAMI

CW recently walked to support our local NAMI chapter (the National Alliance on Mental Illness) at the Rye Town Park. The CW team is always proud to be able to raise awareness for NAMI, whose mission is advocating for access to services, treatment, support, research, and continual raising awareness on mental illness.

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 support of our CW’s staff, faculty, and friends!

To learn more about NAMI, click here

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