Chef’s Tasting & Rating Event
Hillcrest Highlands of Gretna is excited to welcome Chef Cosmos, our new chef with an extensive culinary background in serving older adults.
Future residents are invited to join us for a special Tasting Event where you can meet Chef Cosmos, sample new culinary selections and provide your ratings and feedback to help shape the dining experience at Hillcrest Highlands.
Space is limited. Please RSVP by Friday, July 17 to HHGmarketing@hillcresthealth.com or (402) 761-1527.
// 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’;
}
});

