$(function() {
$('#menu-button').on('click', toggle_menu);
});
function toggle_menu() {
$('#menu').toggle();
}