var flag = true;
$(function(){
    if(flag) $('.field ul li').click(function()
    {
            flag = false;
            $(this).find('ul').stop(true, true);
            $(this).find('ul').slideDown();
    });
    else $('.field ul li').click(unction()
    {
            flag = true;
            $(this).find('ul').slideUp('slow');
    }); 
});