I have two divs with the same class, I'd like to animate them to a different color at the same time, but when I do this one animates and finishes, and only then does the other change. Is there a way to make them do this at the same time? Right now I'm doing it like so:
$('.menutxt').animate({color:"#333333"},400);
$('#burlington_txt').animate({color:"#ffffff"},400);
both have the class menutxt.
Thanks for any help I can get on this.