// Stellt einen Newsticker dar dessen Inhalt nach oben durchscrollt.































var marqueewidth=200;































var marqueeheight=200;































var speed=1;































































// In der ersten Zeile muss das content ohne + bleiben. Es wird hier erst initialisiert.































// In den (beliebeig vielen) Folgezeilen muss das Plus stehen, weil die in Zeile 8 initialisierte Variable hier































// ZUSÄTZLICHEN Inhalt bekommt, nämlich die Folgetermine































var content="<h3>22.11.11 - 23.01.12</h3><p>AIDA - das Clubschiff<br>AIDA diva</p>";







	content+="<h3>28.01.12</h3><p>1. Kostümsitzung FCC<br>Bürgerhaus Nieder Florstadt</p>";







	content+="<h3>01.02.12 - 08.02.12</h3><p>HR Fernsehproduktion <br>Baunatal</p>";







content+="<h3>11.02.12</h3><p>2. Kostümsitzung FCC<br>Bürgerhaus Nieder Florstadt</p>";



content+="<h3>16.02.12</h3><p>Weiberfasching FCC<br>Bürgerhaus Nieder Florstadt</p>";



content+="<h3>19.02.12</h3><p>Santiago - Settchesball<br>Eppertshausen</p>";



content+="<h3>20.02.12</h3><p>Santiago- Rosenmontagsparty<br>Mömbris</p>";



content+="<h3>21.02.12</h3><p>Santiago - Faschingsparty<br>Kilianstädten</p>";































       































if (document.all || document.getElementById) {































	document.write("<marquee direction=up scrollAmount=" +speed+ " width=" +marqueewidth+ " height=" +marqueeheight+ ">" +content+ "</marquee>");































}































































































function regenerate(){































  if (document.layers){































    intializemarquee();































  }































}































































function intializemarquee(){































  document.cmarquee01.document.cmarquee02.document.write(content);































  document.cmarquee01.document.cmarquee02.document.close();































  thelength=document.cmarquee01.document.cmarquee02.document.height;































  movetext();































}































































function movetext(){































  if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){































    document.cmarquee01.document.cmarquee02.top-=speed;































    setTimeout("movetext()",100);































  }































  else{































    document.cmarquee01.document.cmarquee02.top=marqueeheight;































    movetext();































  }































}































































window.onload=regenerate;
