var max=0;
var x=0; pos=0;

function textlist()
{
  max=textlist.arguments.length;
  for (i=0; i<max; i++)
  this[i]=textlist.arguments[i];
}

function textticker() 
{       
  document.getElementById("ticker").innerHTML =tl[x].substring(0,pos);

  if(pos++==l)
	{
 		pos=0;
  	setTimeout("textticker()",1000);
  	x++;
  	if(x==max)
  	x=0;
  	l=tl[x].length;
	} 
	else
	{
    setTimeout("textticker()",100);
	}
}
