var text = new Array();text[0]="Herzlich Willkommen beim Bundesverband Deutscher Pathologen e.V.";text[1]="Zuletzt aktualisiert am 07.10.2008";var statz=0;var posi=0;function lauftext(){  if (posi<text[statz].length)  {     window.status = text[statz].substring(0,posi);     posi++;     setTimeout("lauftext()",100);  }  else  {     window.status= text[statz];     posi=0;     statz++;     if (statz >= text.length) statz=0;     setTimeout("lauftext()",800);  }}