
function runGlow() {
	$('#header')
		.css({ backgroundPosition: '0px 38px' })
		.animate({ backgroundPosition: '60000px 38px' }, 200000, 'linear', runGlow);
}

$(window).load(function() {
	$('#header').addClass('color-strip');
	runGlow();
});
