var txt = new Array ("Willkommen", "Soldiers of Darkness since 2009", "Wir suchen noch aktive Member", "Bewerbungen bitte im Forum", "Script & Design by SoD");
var txtcount = 5;
var i = 1;
var wtxt = 0;
var pm = 1;

function animtitle() {
if (pm == 0) i--;
if (pm == 1) i++;

if (i == -1) {
pm = 1;
i = 0;
wtxt++;
wtxt = wtxt % txtcount;
}
if (i == txt[wtxt].length + 10) {
pm = 0;
i = txt[wtxt].length;
}
top.document.title = "«|" + txt[wtxt].substr(0, i) + "|»";
setTimeout("animtitle()", 100);
}
animtitle();
