Skip to content

Why you should look at the past to get ahead

With 2016 right around the corner, it’s exciting to think ahead about your goals for the coming 12 months. This is also a great time to reflect on the past year. Despite the best of intentions, unfortunately, a lot of New Years resolutions fall by the wayside come February. Re-examining what you set out to

A Thought for World Peace and Greetings of the Season

A quote: There are two ways of spreading light: to be the candle or the mirror that reflects it. Edith WhartonIn this beautiful season of light, may you always be the candle or the mirror that shines for yourself and others, and may you be surrounded by the light of others.  We have a choice,

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