Feel Better

Not to brag, but nobody knows your benefits and well-being programs better than me, Betty. And if you're looking for ways to feel better, you're in the right place. I've pulled all the options below together for you — dive in to find out more! Check out these videos for five quick tips on how to practice Wellbeing at home in English and Spanish

Currently a Team Member? Visit MyHMH to take action and connect directly to the resources.

Feel Better

(function() { const inject = () => { const images = [ 'https://www.hackensackmeridianhealth.org/-/media/project/hmh/hmh/public/banners-1140x400/feel-live-work-better/CUL-7323-FEEL-Better-400x400.png', 'https://www.hackensackmeridianhealth.org/-/media/project/hmh/hmh/public/banners-1140x400/feel-live-work-better/CUL-7323-LIVE-Better-400x400.png', 'https://www.hackensackmeridianhealth.org/-/media/project/hmh/hmh/public/banners-1140x400/feel-live-work-better/CUL-7323-WORK-Better-400x400.png' ]; // Target the content container directly const contentContainers = document.querySelectorAll('.hero-cta-card .hero-cta-content'); contentContainers.forEach((container, index) => { // Safety check: prevent infinite loops or re-clearing if (container.getAttribute('data-img-only-added')) return; // 1. Create the replacement image const imgElement = document.createElement('img'); imgElement.src = images[index] || images[0]; imgElement.alt = `Hero Image ${index + 1}`; // Setting styles to make the image fill the card appropriately imgElement.style.width = '100%'; imgElement.style.height = 'auto'; imgElement.style.display = 'block'; // 2. Clear the container (removes icon, title, and description) container.innerHTML = ''; // 3. Add the image back in container.appendChild(imgElement); // Mark as processed container.setAttribute('data-img-only-added', 'true'); }); }; // Run immediately inject(); // Retry mechanism for Next.js hydration let attempts = 0; const interval = setInterval(() => { inject(); attempts++; if (attempts > 10) clearInterval(interval); // Increased attempts for slower hydration }, 500); })();