A Night at Nottingham’s
You’re Invited to a Night at Nottingham’s!
We welcome you to be our guest at this exclusive Grand Lodge event.
Enjoy an evening of fine dining in Nottingham’s Restaurant. Get a taste of the luxurious, resort-style amenities in our beautiful, maintenance-free community.
Make new friends as you reconnect with our team. We can’t wait to see you!
Seating is limited — RSVP by July 17 to (402) 781-8816 or HGLreferral@hillcresthealth.com.
// Phone button logic
const phoneButton = document.querySelector(‘.acf-phone-button’);
if (phoneButton && (!phoneButton.getAttribute(‘href’) || phoneButton.getAttribute(‘href’) === ‘tel:’)) {
phoneButton.style.display = ‘none’;
}
// Email button logic
const emailButton = document.querySelector(‘.acf-email-button’);
if (emailButton && (!emailButton.getAttribute(‘href’) || emailButton.getAttribute(‘href’) === ‘mailto:’)) {
emailButton.style.display = ‘none’;
}
});

