$(document).ready(function(){

  $('a.title').bind('click', function(e) {
    e.preventDefault();
  
    $(this).siblings('p.description').toggle();
  
  });
  
  
  // toggle descriptions
  $('a.show.desc').bind('click', function(e) {
    e.preventDefault();
    
    $(this).hide();
    
    $('p.description, a.hide.desc').show();
  });
  
  $('a.hide.desc').bind('click', function(e) {
    e.preventDefault();
    
    $(this).hide();
    $('p.description').hide();
    $('a.show.desc').show();
  });
  
  // toggle tags
  $('a.show.tags').bind('click', function(e) {
    e.preventDefault();
    
    $(this).hide();
    
    $('p.tags, a.hide.tags').show();
  });

  $('a.hide.tags').bind('click', function(e) {
    e.preventDefault();
    
    $(this).hide();
    $('p.tags').hide();
    $('a.show.tags').show();
  });

});