var message = new Array();
var reps = 20;
var speed = 200;  


var p = message.length;
var L = " - Chatter und ihre Bilder - chattergalerie.info";
var C = 0;
var mC = 0;
var s = 0;
var sT = null;
if (reps < 1) reps = 1;
function doTheThing() {
A();
}
function A() {
s++;
if (s > 27) { s = 1;}

if (s == 1) { document.title = 'C'+L; }
if (s == 2) { document.title = 'Ch'+L; }
if (s == 3) { document.title = 'Cha'+L; }
if (s == 4) { document.title = 'Chat'+L; }
if (s == 5) { document.title = 'Chatt'+L; }
if (s == 6) { document.title = 'Chatte'+L; }
if (s == 7) { document.title = 'Chatter'+L; }
if (s == 8) { document.title = 'ChatterG'+L; }
if (s == 9) { document.title = 'ChatterGa'+L; }
if (s == 10) { document.title = 'ChatterGal'+L; }
if (s == 11) { document.title = 'ChatterGale'+L; }
if (s == 12) { document.title = 'ChatterGaler'+L; }
if (s == 13) { document.title = 'ChatterGaleri'+L; }
if (s == 14) { document.title = 'ChatterGalerie'+L; }
if (s == 15) { document.title = 'ChatterGaleri'+L; }
if (s == 16) { document.title = 'ChatterGaler'+L; }
if (s == 17) { document.title = 'ChatterGale'+L; }
if (s == 18) { document.title = 'ChatterGal'+L; }
if (s == 19) { document.title = 'ChatterGa'+L }
if (s == 20) { document.title = 'ChatterG'+L }
if (s == 21) { document.title = 'Chatter'+L }
if (s == 22) { document.title = 'Chatte'+L }
if (s == 23) { document.title = 'Chatt'+L }
if (s == 24) { document.title = 'Chat'+L }
if (s == 25) { document.title = 'Cha'+L }
if (s == 26) { document.title = 'Ch'+L }
if (s == 27) { document.title = 'C'+L }
if (C < (27 * reps)) {
sT = setTimeout("A()", speed);
C++;
}
else {
C = 0;
s = 0;
mC++;
if(mC > p - 1) mC = 0;
sT = null;
doTheThing();
   }
}
doTheThing();

