Skip to content
Veterans Academic Programs
CW’s Veteran academic programs are designed to prepare you for a successful career.
Bring your potential. Develop and enrich your talents at CW.
The College of Westchester’s academic programs are uniquely designed to combine classroom learning with real-world experience. The power of CW is our career-focused programs, small college environment, and our caring professors and staff. With individual coaching and course scheduling, plus helpful academic advisors, you’ll be ready for success at CW and in your career.
If it’s time to transform yourself for success, CW is the place for you.
Real life programs designed for real possibilities.
For more extensive information, please see college catalog at cw.edu/cwcatalog.
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');
}
});
});
});