and now youd also need to decide: when will the submenu be hidden?
right now its only hidden, if you click the menu point again that opened it.
i think this would hide it if you click any link inside the submenu:
<script>
jQuery('.fixed-submenu a').on('click', function(e){
jQuery(this).closest('.fixed-submenu').hide();
})
</script>