$(function(){
	$(".menu_ul li ul").hide();
	$('.divtopmenu, .divtopmenu1').hide();
	$('.topmenu ul li').hover(
		function() {
			$(this).addClass("active");
			$(this).find('.rel_menu').css({'display':'block'});
			$(this).find('.divtopmenu, .divtopmenu1').stop(true, true); // останавливаем всю текущую анимацию
			$(this).find('.divtopmenu, .divtopmenu1').slideDown(350);
			$(this).find('ul').slideDown(350);
		},
		function() {
			$(this).removeClass("active");
			
			$(this).find('.divtopmenu, .divtopmenu1').slideUp(350);

		}
	);
	
});
