var text = new Array();
text[0] = "Wir sind jederzeit für Sie da -- 24 Stunden am Tag. Rufen Sie uns an..." ;

var momentan = 0;
var position = 0;

function ticker() {
  if (position < text[momentan].length) {
     window.status =
      text[momentan].substring(0, position);
   position++;
   setTimeout("ticker()", 100);
  } else {
     window.status = text[momentan];
   position = 0;
   momentan++;
   if (momentan >= text.length) momentan = 0;
   setTimeout ("ticker()", 1000);
  }
}
