Open Submenu:
$('ul.desktop_menu li.menu-item-has-children').hover(function() {
$(this).find('.sub-menu').stop(true, true).delay(100).fadeIn(200);
}, function() {
$(this).find('.sub-menu').stop(true, true).delay(100).fadeOut(200);
});
//WPML switcher
$('ul.wpml_switch li.dropdown').hover(function() {
$(this).find('.dropdown-menu').stop(true, true).delay(100).fadeIn(200);
}, function() {
$(this).find('.dropdown-menu').stop(true, true).delay(100).fadeOut(200);
});