var message = new Array();
// Platz für neue Messages ist genug.
// einfach weiter Zeilen hinzufügen und message nummer ändern.
message[0] = "web:design";
message[1] = "web:hosting";
message[2] = "web:dienstleistungen";
message[3] = "web:server";
message[4] = "web:recherche";
message[5] = "web:promotion";
message[6] = "web:mediation";

// die anzahl der bewegungen bis ne neue message ins feld rückt.
var reps = 2;
var speed = 200;  // geschwindigkeit (je größer desto langsamer).

// keine änderungen bitte
var p = message.length;
var T = "";
var C = 0;
var mC = 0;
var s = 0;
var sT = null;
if (reps < 1) reps = 1;
function doTheThing() {
T = message[mC];
A();
}
function A() {
s++;
if (s > 14) { s = 1;}
// hier kommt bewegung ins feld...
// if (s == 1)  { document.title = '| CS Web-Consult ::::::| '+T+' Memberpage'; }
if (s == 1)  { document.title = '| CS Web-Consult ::::::| . . . . . '+T+'  . . . . . '; }
if (s == 2)  { document.title = '|: CS Web-Consult :::::| . . . . . '+T+'  . . . . . '; }
if (s == 3)  { document.title = '|:: CS Web-Consult ::::| . . . . . '+T+'  . . . . . '; }
if (s == 4)  { document.title = '|::: CS Web-Consult :::| . . . . . '+T+'  . . . . . '; }
if (s == 5)  { document.title = '|:::: CS Web-Consult ::| . . . . . '+T+'  . . . . . '; }
if (s == 6)  { document.title = '|::::: CS Web-Consult :| . . . . . '+T+'  . . . . . '; }
if (s == 7)  { document.title = '|:::::: CS Web-Consult | . . . . . '+T+'  . . . . . '; }
if (s == 8)  { document.title = '|:::::: CS Web-Consult | . . . . . '+T+'  . . . . . '; }
if (s == 9)  { document.title = '|::::: CS Web-Consult :| . . . . . '+T+'  . . . . . '; }
if (s == 10)  { document.title = '|:::: CS Web-Consult ::| . . . . . '+T+'  . . . . . '; }
if (s == 11) { document.title = '|::: CS Web-Consult :::| . . . . . '+T+'  . . . . . '; }
if (s == 12) { document.title = '|:: CS Web-Consult ::::| . . . . . '+T+'  . . . . . '; }
if (s == 13) { document.title = '|: CS Web-Consult :::::| . . . . . '+T+'  . . . . . '; }
if (s == 14) { document.title = '| CS Web-Consult ::::::| . . . . . '+T+'  . . . . . '; }
if (C < (14 * reps)) {
sT = setTimeout("A()", speed);
C++;
}
else {
C = 0;
s = 0;
mC++;
if(mC > p - 1) mC = 0;
sT = null;
doTheThing();
   }
}
doTheThing();