Is there any reason as to why this function doesn't repeat?
var $title = $('#title');var animateGlow = function($title) { $title.animate({ 'color':'red' }, 2000) .animate({ 'color':'blue' }, 2000, function() { animateGlow(this); });};animateGlow($title);