+1  A: 

I would add a class or ID to the expand and collapse links then something like this will work

$(document).ready(function() {
  $("#expand").click(function(){
    ('.answer').slideDown('normal');
  });

  $("#collapse").click(function(){
    ('.answer').slideUp('normal');
  });
}
Sean
@Sean - Thanks for the tip. I've modified the code to make it work.
Evan