Live Better

We know work impacts your life, and vice versa. So we offer lots of ways to live your best life, from dealing with "today" challenges to planning for "tomorrow" goals, like retirement or college. Start clicking below to discover how we can help! Learn more about improving financial health with Betty in English & Spanish

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

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