Skip to content

Get Set for Daylight Savings

This coming Sunday, March 13, marks the beginning of Daylight Savings time for 2016. Remember to set your clocks ahead. If you find yourself frustrated with having trouble getting up in the morning or finding yourself more tired than usual come 8 pm, keep in mind that it’s totally normal to have a hard time adjusting those first few days.

That said, since sleep disturbances can impact our productivity at work and school, it’s important to take the steps we need to make the transition as painless as possible. This article offers some suggestions to help you adjust to the time change: http://www.webmd.com/sleep-disorders/features/coping-with-time-changes

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