$('#menu > li').click(function(e) {
$(this).children('.top-nav-hidden').slideToggle();
});
$('#menu > li').click(function(e) {
if($(this).children('.top-nav-hidden:visible').length == 0){
$(this).children('.top-nav-hidden').fadeIn(500);
}
else{
$(this).children('.top-nav-hidden').fadeOut(500);
}
});