<!-- 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 25. und 26. Juni 2011 findet uff der Sandgruebematte s Glygge-Grimpeli statt.",
	
	"Au d Seebäre sin mit 3 Mann-Frauschafte derbyy", 
	
	"und freije sich uff d Unterstitzig vo zahlryyche Fans.",
	
	"D Spielplän findet ihr unter der Rubrik Aktuell."	   
	

);



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 -->
