Skip to content

Join Alumni Association

Are you a CW Alumni? Join our alumni association community to enjoy benefits and services.

Stay Connected to Your CW Experience, Enjoy the Benefits, Give Back
Being part of the CW Alumni Association gives you full access to the CW Alumni Network Portal. Take a look at the range of valuable benefits and services the Association offers and the opportunities you have to give back to The College and to current students.

CW Alumni Association Benefits and Services:
• Stay connected with former classmates, friends and the CW community
• FREE access to CW’s extensive career services programs
• Network with employers through CW career fairs and events
• Enjoy many professional, social and cultural activities and events
• Discounted professional development and refresher classes
• Guest Lecture Series and other campus events
• Access to hire CW interns or recent graduates for your employer
• Promote your business to current students, staff, faculty and graduates/alumni

Registering for membership in the CW Alumni Association is fast and easy, click here to join!

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