
var message = new Array();

message[0] = "www.dgsclan.de";
message[1] = "Die Gloreichen 7";
message[2] = "Der Server mit weit ueber 250 Maps";
message[3] = "Tragen Sie sich ins Gaestebuch ein oder Bewerben Sie sich!!!";
message[4] = "ACHTUNG>>>SEITE WIRD TAEGLICH ERWEITERT<<<ACHTUNG";
message[5] = "Wir wuensche allen einen erfolgreiches Jahr 2011";
message[6] = "Herzlich willkommen beim Day of Dayfeat Funclan    =|DGS|=";

var reps = 2;
var speed = 1; // Set the overall speed (larger number = slower action).

var p = message.length;
var T = "";
var C = 0;
var mC = 0;
var s = 0;
var sT = null;
if (reps < 10) reps = 10;
function doTheThing() {
T = message[mC];
A();
}
function A() {
s++;
if (s > 90) { s = 1;}

if (s == 1) { document.title =  '=|DGS|=----- '+T+' -----'; }
if (s == 10) { document.title = '-=|DGS|=---- '+T+' -----'; }
if (s == 20) { document.title = '--=|DGS|=--- '+T+' -----'; }
if (s == 30) { document.title = '---=|DGS|=-- '+T+' -----'; }
if (s == 40) { document.title = '----=|DGS|=- '+T+' -----'; }
if (s == 50) { document.title = '-----=|DGS|= '+T+' -----'; }
if (s == 60) { document.title = '----=|DGS|=- '+T+' -----'; }
if (s == 70) { document.title = '---=|DGS|=-- '+T+' -----'; }
if (s == 80) { document.title = '--=|DGS|=--- '+T+' -----'; }
if (s == 90) { document.title = '-=|DGS|=---- '+T+' -----'; }
if (C < (90 * reps)) {
sT = setTimeout("A()", speed);
C++;
}
else {
C = 0;
s = 0;
mC++;
if(mC > p - 1) mC = 0;
sT = null;
doTheThing();
}
}
doTheThing();
