<!-- begin// global variables



var max=0;



function textlist()

{

	max=textlist.arguments.length;

	for (i=0; i<max; i++)

		this[i]=textlist.arguments[i];

}



tl=new textlist

(

    "Am 12. und 13. Juni 2010 findet uff der Sandgruebematte s Glygge-Grimpeli statt.",
	
	"Unseri Seebäre sin mit 3 Mannschafte am Start. Ihri Startnummer sin", 
	
	"S-G1-3, BII-G1-5 und M-G1-2. D' Zyyte findet ihr uff em Spielplan unter Aktuell.",
	
	" Kemmet unseri Sportler go unterstitze."	   
	

);



var x=0; pos=0;

var l=tl[0].length;



function textticker() 

{        

	document.ticker.textfeld.value=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()",200);



}



// end -->