(function($){$.fn.sittiFontColorFader=function(params){var defaults={fromColor:'#CCC',toColor:'#FFF',speedIn:1000,speedOut:1000};params=$.extend(defaults,params);$(this).each(function(){$(this).css({'color':params.fromColor});$(this).hover(function(){$(this).stop(false,true).animate({'color':params.toColor},params.speedIn);},function(){$(this).stop(false,true).animate({'color':params.fromColor},params.speedOut);})});return $(this);}})(jQuery);
