What am I doing wrong that the following doesn't animate the background color?
<div style="height:100px;width:100px;background:red">animate this</div><br>
<input type="button" id="mybutton" value="start"/><br>
$("#mybutton").click(function(){
$("div").animate({backgroundColor: 'blue'});
});