(function() {
var path = window.location.pathname;
var hideOnPages = ['/reservation', '/booking'];
var shouldHide = hideOnPages.some(function(p) {
return path.indexOf(p) !== -1;
});
if (shouldHide) {
var bar = document.getElementById('sequoia-sticky-bar');
if (bar) bar.style.display = 'none';
}
})();