var txt=document.title;
var len=txt.length;
var step=0;
function TitleAnimate()
{	
	if(step==3) step=0;
	else if(step==1)document.title="Buddies "+txt;
	else if(step==2)document.title="BUDDIES "+txt;	
	step++;
	setTimeout("TitleAnimate()",500);
}