var menu_stop = 0;
$(document).ready(function(){
    $('.ml-title').click( function(){
        if(menu_stop==0) {
            menu_stop = 1;
            $(this).parent('.main-menu').animate({
                'height': '315px'
            }, 500, function(){
                menu_stop = 0;
            });
            a = $(this).parent('.main-menu').attr('id');
            $('.main-menu').each(function(){
                if(($(this).css('height')!='54px') && ($(this).attr('id') != a)) $(this).animate({
                    'height': '54px'
                }, 500);
            });     
        }
    });
});
