The Family Life Center is designed to empower every family member staying at the Mission with the tools they need to live a successful and joy-filled life. Education and fun are our top priorities. Adult guests can pursue their high school diploma at our on-campus, accredited high school while youth maintain access to tutors and after-school aid. Vibrant and kid-friendly décor create an atmosphere of wonder as we welcome everyone to try, learn, and experience something new today.
Seeking Help?
Our Family Life Center holds life-transforming resources for those seeking to overcome homelessness. If you are homeless and ready to make the necessary life changes to achieve self-sufficiency, call 407-423-2131 to express interest in our programs.
(function () {
const LABEL = 'Lives Transformed'; // adjust if exact link text differs
function findItem() {
const links = document.querySelectorAll('header a, nav a, .elementor-nav-menu a');
for (const link of links) {
if (link.textContent.trim() === LABEL) return link.closest('li') || link;
}
return null;
}
const item = findItem();
if (!item) return;
const observer = new MutationObserver(() => {
if (!document.body.contains(item)) {
const payload = {
time: new Date().toISOString(),
url: location.href,
ref: document.referrer,
ua: navigator.userAgent
};
navigator.sendBeacon(
'/wp-admin/admin-ajax.php?action=menu_bug_log',
new Blob([JSON.stringify(payload)], { type: 'application/json' })
);
observer.disconnect();
}
});
observer.observe(document.body, { childList: true, subtree: true });
})();