Skip to content

CW Walks for Breast Cancer Research

During the month of October, the Student Government Association and the Allied Health Club partnered up to launch CW Walks for Breast Cancer Research. This initiative encouraged members of the CW community – students, staff, and faculty – to join our team on the Charity Miles app to log and track miles they walked, ran, jogged, or biked, all on their own time. The app updated miles multiple times daily so that members could follow progress. Our goal was to reach 500 miles as a team during the month of October. We reached our goal in just 10 days! Still, our CW community continued to log miles, ultimately logging over 2,000 miles in the month! During this month, student and employee members shared screenshots of their progress as well as photos of their exercise routines.

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