jQuery(document).ready(function() {
	// Anchor-Navi
    $(".anchor-menu button").click(function() {            
        if ($(this).attr("aria-expanded") == "true") {
          $(".anchor-menu").addClass("open");                            
        } else {
          $(".anchor-menu").removeClass("open");              
        }
    });
});   