	var message = new Array();
	message[0] = "THE SIMPSONS"
	var reps = 2;
	var speed = 300; 
	var p = message.length;
	var T = "";
	var C = 0;
	var mC = 0;
	var s = 0;
	var sT = null;
	if (reps < 1) reps = 1;
	function taatittustenTanssi() {
	T = message[mC];
	A();
	}
	function A() {
	s++;
	if (s > 29) { s = 1;}
	if (s ==  1) { document.title = '______________'; }
	if (s ==  2) { document.title = '_____________T'; }
	if (s ==  3) { document.title = '____________TH'; }
	if (s ==  4) { document.title = '___________THE'; }
	if (s ==  5) { document.title = '__________THE '; }
	if (s ==  6) { document.title = '_________THE S'; }
	if (s ==  7) { document.title = '________THE SI'; }
	if (s ==  8) { document.title = '_______THE SIM'; }
	if (s ==  9) { document.title = '______THE SIMP'; }
	if (s == 10) { document.title = '_____THE SIMPS'; }
	if (s == 11) { document.title = '____THE SIMPSO'; }
	if (s == 12) { document.title = '___THE SIMPSON'; }
	if (s == 13) { document.title = '__THE SIMPSONS'; }
	if (s == 14) { document.title = '_THE SIMPSONS_'; }
	if (s == 15) { document.title = 'THE SIMPSONS__'; }
	if (s == 16) { document.title = 'HE SIMPSONS___'; }
	if (s == 17) { document.title = 'E SIMPSONS____'; }
	if (s == 18) { document.title = ' SIMPSONS_____'; }
	if (s == 19) { document.title = 'SIMPSONS______'; }
	if (s == 20) { document.title = 'IMPSONS_______'; }
	if (s == 21) { document.title = 'MPSONS________'; }
	if (s == 22) { document.title = 'PSONS_________'; }
	if (s == 23) { document.title = 'SONS__________'; }
	if (s == 24) { document.title = 'ONS___________'; }
	if (s == 25) { document.title = 'NS____________'; }
	if (s == 26) { document.title = 'S_____________'; }
	if (s == 27) { document.title = '______________'; }if (C < (27 * reps)) {
	sT = setTimeout("A()", speed);
	C++;
	}
	else {
	C = 0;
	s = 0;
	mC++;
	if(mC > p - 1) mC = 0;
	sT = null;
	taatittustenTanssi();
   }
	}
	taatittustenTanssi();