Try to add this code into templates/jf_event-up/scripts/js/template.js at line 51:
$('.nav-collapse').collapse('hide');
After adding, it look like:
menuItems.click(function(e){
$(".navigation ul.nav > li").removeClass('active');
$(this).parent().addClass('active');
var href = $(this).attr("href"),
offsetTop = href === "#" ? 0 : $(href).offset().top-topMenuHeight+12;
$('html, body').stop().animate({
scrollTop: offsetTop},{
duration: 500,
easing: 'easeOutCubic',
complete: window.reflow
});
$('.nav-collapse').collapse('hide');
e.preventDefault();
});
joomfreak