$(document).ready(function () {
    
    $("ul.nav > li").click(
        function() {
            if( !$(this).children("ul").is(":animated") ){
                $(this).children("ul").slideDown(600);
            }
        }
    ).children('ul').hide();


 });
