on many sites, such as http://www.clearleft.com, you\'ll notice that when the links are hovered over, they will fade into a different color as opposed to immediately switchi
You can do this with JQueryUI:
$('a').mouseenter(function(){ $(this).animate({ color: '#ff0000' }, 1000); }).mouseout(function(){ $(this).animate({ color: '#000000' }, 1000); });
http://jsfiddle.net/dWCbk/