// JavaScript Document
var pos=0;
var nar="Alcyon Informatics      Egy Használható MegOldás      ";
function scroll()
{ 
  document.title=nar.substring(pos,nar.length)+nar.substring(0,pos);
  pos=(pos+1)%nar.length;
} 
function Thisinit()
{
  setInterval("scroll()",200);
}
javascript:Thisinit()