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

tl=new textlist
(
" News vom 22.04.10:", 
" Hoffest der Schäferei Teerling am 14.05.10 ab 11.00 Uhr.",
" Mit Einweihung des Proj. 'Spurwechsel' der Gem. Wagenfeld ab 14.30 Uhr.");

var x=0; pos=0;
var l=tl[0].length;

function textticker() 
{        
document.form1.textfeld.value=tl[x].substring(0,pos)+"_";

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