View our award-winning wine menu.
Menu items subject to change based on availability.
function updateMenuSize() {
var menuContainer = $("#menuContainer");
var width = Math.floor(menuContainer.parent().width());
if(width === menuContainer.width()) {
return;
}
var height = Math.floor(width * (1232 / 800) + 40);
menuContainer.width(width);
$("#menuFrame")
.width(width)
.height(height)
.attr("src", "https://app.menuvative.com/embed/1.0/menu?menuId=181&width=" + width);
}
// When the page is first loaded or window is resized, ensure the menu is in the correct size
$(updateMenuSize);
$(window).resize(updateMenuSize);