$(function(){
      $('.discography').toggle(
          function(){
              $(this).find('.more').fadeIn();
          },
          function(){
              $(this).find('.more').fadeOut();
          }
      );
  });

