フィドルは次のとおりです。
http://jsfiddle.net/KpEMc/1718/
これですべてが完璧です。JQuery 1.4.4 バージョンです。しかし、JQuery のバージョンを最新のものに更新すると、動作しません。なんで?
更新されたバージョンは、ここにあります。
JSコードは次のとおりです。
$(document).ready(function(){
$("#sample").mouseover(function() {
$(this).animate({ backgroundColor:'#f00'},300);
}).mouseout(function() {
$(this).animate({ backgroundColor:'#ccc'},300);
});
});