$("#link").hover(function(){ $(this).animate({ color: '#3d3d3d'}, 4000); }, function() { $(this).animate({ color: '#000000'}, 4000); });
use milliseconds there.
this is animation syntax
$ (selector) .animate ({PARAMS}, speed, callback);
where the speed can be: slow / fast / millisecond
source share