Skip to content

Tuesday Kicked Off the Fall Semester

The College of Westchester welcomes our Fall students. During the orientation day students were greeted by our President and CEO, Mary Beth Del Balzo, “The things you will learn here, will become yours forever… those things will help you shape your destiny.” Other activities included a student panel presentation where current students shared their college life experiences at CW, the benefits of joining clubs, time management tips, and other important information to make the Fall session a successful and productive experience.

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