


    $(document).ready(function() {

      $('.more-link').click(function() {
        $(this).hide();
        $(this).siblings('.more-info:first').show();
        return false;
      });

      $('.hide').click(function() {
        var a = $(this).parents('.more-info:first');
        a.hide();
        a.siblings('.more-link:first').show();
        return false;
      });

    });
