top of page
Home
Shows
Gallery
Info
More
Use tab to navigate through the menu items.
We couldn’t load Events due to a technical issue
Refresh your page to try again
Refresh Page
bottom of page
$w.onReady(function () { const interval = setInterval(() => { const all = Array.from(document.querySelectorAll("*")); for (const el of all) { if ( el.children.length === 0 && el.textContent && el.textContent.includes("Tax & Fees (") ) { el.textContent = el.textContent.replace(/\s*\(\d+%?\)\s*/g, ""); } } }, 500); // stop after 10 seconds setTimeout(() => clearInterval(interval), 10000); });