Skip to content

Operation Cupid in Full Swing

As part of the celebrations for Valentine’s Day, Operation Cupid was in full swing last Thursday when members of the CW community and the Stars & Stripes club delivered over 60 roses around the building. The $5.00 Operation Cupid package included a single rose, a chocolate, and a card delivered to a person that makes a difference on the sender’s life. All recipients were happy to receive such a unique gift and celebrated the Spirit of Valentine’s Day.

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