function enableMenu() {
   var isCurrent = false

$('#navigation > li').hover(function() {
	if ($(this).hasClass('current') == true) {
		isCurrent = true;
	} else {
		isCurrent = false;
	}
	$(this).children('.submenu').show()
	$(this).addClass('current')
}, function() {
	$(this).children('.submenu').hide()
	if (!isCurrent) {
		$(this).removeClass('current')
	}
});
}
