jQuery.fn.dwFadingLinks = function(settings) {

	return this.each(function() {
		var original = $j(this).css('color');
		$j(this).mouseover(function() { $j(this).animate({ color: settings.color }, settings.duration); });
		$j(this).mouseout(function() { $j(this).animate({ color: original }, settings.duration); });
	});
	
};

