<!--  

var TextNr = 0;
TextInput = new Array();
TextInput[0] = "Well done is not good enough.";  
TextInput[1] = "We do not know what short film is.";
TextInput[2] = "One must always be prepared to learn something totally new. (Wittgenstein)";
TextAnzahl = 3;
  
var Geschwindigkeit = 150;   /*** Nach Bedarf erhoehen oder erniedrigen ***/
var Breite = 110;            /*** Nach Bedarf erhoehen oder erniedrigen ***/
	
TextLaenge = new Array();
for ( i=0; i< TextAnzahl; i++)  {
	TextLaenge[i] = TextInput[i].length; /*** Bitte nicht aendern ***/
}
var Position = 1 - Breite;   /*** Bitte nicht aendern ***/

function StatusLauftext()
{
	
	
	Position++;
	var Textzustand="";
	if (Position == TextLaenge[TextNr])
	{
		Position = 1 - Breite;
 		TextNr++;
		TextNr = TextNr % TextAnzahl;
	}
	if (Position < 0)
	{
		for (var Zaehler=1; Zaehler <= Math.abs(Position); Zaehler++)
		{
			Textzustand = Textzustand + " ";
		};
		Textzustand = Textzustand + TextInput[TextNr].substring(0, Breite - Zaehler + 1);
	}
	else
	{
		Textzustand = Textzustand + TextInput[TextNr].substring(Position, Breite + Position);
	}
	window.status = Textzustand;
	setTimeout("StatusLauftext()",Geschwindigkeit);
}
 //-->
