function set_menu_left(){
	width = Math.max($(window).width(), 1000);
	$('#menu-top .menu-item ul').each(function(){
		$(this).css('margin-left', 0);
		if(($(this).width()+$(this).parent().position().left) >= width){
			$(this).css('left', $(this).parent().position().left+$(this).parent().width()-$(this).width()+15);
		}else{
			$(this).css('left', $(this).parent().position().left-5);
		}
	});
}
$(document).ready(function(){
	set_menu_left();
    $('#menu-top .menu-item').hover(
        function() {
            $(this).addClass("active");
            $(this).find('ul').stop(true, true); // останавливаем всю текущую анимацию
			$(this).find('ul').slideDown(100);
        },
        function() {
            $(this).removeClass("active");
            $(this).find('ul').slideUp(100);
        }
    );
});
$(window).resize(function(){
	set_menu_left();
});
