$(function() {
  $('.tag-list a.tag').live('click', function() {
    $(this).parents('h2').next('.posts').toggle();
  });

  if (window.location.hash) {
    $(window.location.hash).next('.posts').show();
  }
});

