I'm using the following right now:
$('input[value=NEW]:hidden').parent().parent().animate({
backgroundColor: "#FF9933",
duration: 500
}).animate({
duration: 500,
backgroundColor: "#FFFFFF"
});
It seems like this ~almost~ works but it doesn't seem to be waiting the full time.
Is there a better way to do this?