Skip to content

Mark DeSerio – Employee of the Year

Mark DeSerio went to college to pursue a career in the computer networking field and that school was Westchester Business Institute (WBI). He worked part-time in the IT Department at the college while going to classes and once he graduated with his degree, Mark was hired full time. He is the Network Systems Engineer for CW and has been with the college for 15 years.

“I have seen the college grow in many ways through the years from three servers to twenty and how the college now offers a four year degree. I am honored to have been chosen Employee of the Year and I plan on spending many more years at The College of Westchester.” – Mark DeSerio

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