// Switch tabs
tabbertab.style.display = 'none'
tabberChildren.find(function (child => ) { return child.title === tabName}).style.display = 'block'
// Handle tabbernav CSS
const nav = tabberChildren.find(function (child => ) { return child.classList.contains('tabbernav')})
for (const child of Array.from(nav.children)) {
if (child.firstElementChild.title === tabbertab.title) { child.classList = '' }
}
document.getElementById(id).scrollIntoView({ behavior: "smooth", block: "endstart" })
}