(function () {

window.toggleExpander = function toggleExpander(x) {
    document.getElementsByClassName("menu")[0].classList.toggle("expanded");
}

})();