$(document).ready(function(){
	var home_animation = function(){
		$('#masthead-home h2 span.title').stop().animate({backgroundPosition:'-343px 0'}, 250, function(){
			$('#masthead-home h2 span.title').delay(1500).animate({backgroundPosition:'-665px 0'}, 250, function(){
				$('#masthead-home span.title').delay(1500).animate({backgroundPosition:'-1096px 0'}, 250, function(){
					$('#masthead-home span.title').css({backgroundPosition:'0 0'});
					window.setTimeout(home_animation, 1500);
				});
			});
		});
	};
	if ($('body.home').length) window.setTimeout(home_animation, 2000);	
});