 $(document).ready(function() {
   $("a.expand").click(function(a) {
    $(this).parent().parent().find('.description').slideToggle();
    return false;
   });
 });
