$(function(){
	$('.menu li ul').before('<div class="m-sub-arrD"><!----></div>');
	$('.menu>li').hover(function(){
		//$(this).children('ul').animate({queue:false, duration:"fast"} );
		$(this).addClass('opened');
		$(this).children('ul').slideDown(1,function(){$(this).parents('li').addClass('openedA');});
	},function(){
		//$(this).children('ul').animate({queue:false, duration:"fast"} );
		$(this).removeClass('openedA');
		$(this).children('ul').slideUp(1,function(){$(this).parents('li').removeClass('opened');});
	});
});


