window.addEvent('load',function() {
	var i = 1;
	var start = function() {
		(function() {
			if (i == 13) {
				$$('#header-text h1').setStyle('color', '#fffa00');
				i = 1;
			} else {
				$$('#header-text h1').setStyle('color', '#fff');
			}
			i++;
		}).periodical(100);
	};
	
	var j = 1;
	var startOne = function() {
		(function() {
			if (j == 16) {
				$$('#header-text p').setStyle('color', '#fffa00');
				j = 1;
			} else {
				$$('#header-text p').setStyle('color', '#fff');
			}
			j++;
		}).periodical(100);
	};
	
	start();
	startOne();
});
