$(document).ready(function(){

	$('.menu__menu_main_left li:not(.on)').mouseenter(
		function(){
			if($(this).children('ul').length > 0)
			{
				$(this).find('ul').delay(1000).show("slow");
				$(this).siblings('li:not(.on)').find('ul').delay(1000).hide("slow");
			}
		}	
	);
});


