$(function() {
	$('.b-menu-item-withSubmenu').hover(function(){
		$(this).addClass('b-menu-item-withSubmenu-active');
	}, function() {
		$(this).removeClass('b-menu-item-withSubmenu-active');
	});
	$('.b-menu-item-withSubmenu .b-menu-item-link').click(function(e) {
		e.preventDefault();
	});
});
