


var tx = new Array ("Stas Pjeha"); 
var txcount=1; 
var i=1; 
var wo=0; 
var ud=1; 
function animatetitle() { 
	window.document.title=tx[wo].substr(0, i); 
	window.document.
	if (ud==0) i--; 
	if (ud==1) i++; 
	if (i==-1) {
		ud=1;
		i=0;
		wo++;
		wo=wo%txcount;
	} 
	if (i==tx[wo].length+10) {
		ud=0;
		i=tx[wo].length;
	} 
	parent.window.document.title=tx[wo].substr(0, i)+" "; 
	setTimeout("animatetitle()",50); 
}

