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
2010-10-06 11:48:09