$(document).ready(function() {
  jQuery('.folder').click(function() {
    jQuery(this).next('.children').slideToggle('false');
  });
});

