var message = new Array()

message[0] = "Club Zürich";
message[1] = "Club Zürich";
message[2] = "Club Zürich";
message[3] = "Club Zürich";
message[4] = "Club Zürich";
message[5] = "Club Zürich";
message[6] = "Club Zürich";

var reps = 2

var speed = 300

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>16){s=1}
// you can fiddle with the patterns here...
if(s==1){document.title='VWKäfer======== '+T+' '}
if(s==2){document.title='VW=Käfer======= '+T+' '}
if(s==3){document.title='VW==Käfer====== '+T+' '}
if(s==4){document.title='VW===Käfer===== '+T+' '}
if(s==5){document.title='VW====Käfer==== '+T+' '}
if(s==6){document.title='VW=====Käfer=== '+T+' '}
if(s==7){document.title='VW======Käfer== '+T+' '}
if(s==8){document.title='VW=======Käfer= '+T+' '}
if(s==9){document.title='VW========Käfer '+T+' '}
if(s==10){document.title='VW=======Käfer= '+T+' '}
if(s==11){document.title='VW======Käfer== '+T+' '}
if(s==12){document.title='VW=====Käfer=== '+T+' '}
if(s==13){document.title='VW====Käfer==== '+T+' '}
if(s==14){document.title='VW===Käfer===== '+T+' '}
if(s==15){document.title='VW==Käfer====== '+T+' '}
if(s==16){document.title='VW=Käfer======= '+T+' '}
if(C<(16*reps)){
sT=setTimeout("A()",speed);
C++
}else{
C=0;
s=0;
mC++
if(mC>p-1)mC=0;
sT=null;
doTheThing();}}
doTheThing();
