// Затемнение при наведении на меню
$leftMenu.on('mouseenter', function() {
if (window.innerWidth > '610') {
setTimeout(function() {
if ($leftMenu.is(':hover')) {
$hoverFog.fadeIn(300, 'linear');
}
}, 300);
}
});
$leftMenu.on('mouseleave', function() {
setTimeout(function() {
if (!$leftMenu.is(':hover')) {
$hoverFog.fadeOut(300, 'linear');
}
}, 300);
});