[jQuery] Highlight Table Row with Animate

[jQuery] Highlight Table Row with Animate


At the end of my Ajax request, I'd like to highlight a table row, so
to speak. Why doesn't this work:
id = 5
success: function(e){
    $("#address"+id).css("background-color","#F9FFCF");
    $("#address"+id).animate({backgroundColor:'#FFF'}, 800);
}
The first line will work, but the 2nd line does not. Any ideas?