$(document).ready(function() {
  $('.twistie .title').click(function() {
    $('.twistie .hidden').not($(this).nextAll('.hidden')).hide();
    $(this).nextAll('.hidden').toggle();
    $(this).addClass('title-visited');
  });
});

$(document).ready(function() {
  $('.twistie .hidden').hide();
  $('.twistie .title#default').addClass('title-visited').nextAll('.hidden').show();
});
