The Administration Building is the place to be for anyone hoping to drop off donations, learn more about the Mission, or take a tour. Open Monday-Friday from 8:00 a.m. – 4:30 p.m., the Administration Building houses the following departments:
Administration Departments
President’s Office
Development
Volunteer
Human Resources
Maintenance
Want to Get Involved or Learn More?
If you are interested in learning more about the Mission or partnering with us through donations, service or more, please give our front desk a call at 407.422.4855.
(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 });
})();