var scrtxt = new Array(

/* HIER EINZELNE TEXTFOLGEN EINGEBEN (in Anfuehrungsstrichen und durch Kommata getrennt) !!!
  "............................................." < Maximallaenge */


"+++ 13.03.: 90er-Jahre-Party +++",
"+++ 06.04.: HFC-Party +++",
"+++ 08.04.: Beat Definition +++",
"+++ 10.04.: DJ-TAG-Team +++",
"+++ 13.04.: Cocktailabend +++",
"+++ 15.04.: LIVE: the roovers +++",
"+++ 17.04.: Bergfestfilm-Party +++",
"+++ 22.04.: LIVE: Gnarled Bikers +++",
"+++ 27.04.: Öähhhsome Music +++",
"+++ 29.04.: LIVE: Johanna Zeul & Band +++",
"+++ 04.05.: Cocktailabend +++",
"+++ 06.05.: hsf-moviestar-party +++",
"+++ 20.05.: LIVE: ROUGH ROOSTARS +++",
"+++ 27.05.: Proll- & Schlampenparty +++"


// AB HIER NICHTS MEHR AENDERN !!!
);
	var number   = scrtxt.length;
	var width    = 45;
	var pos      = 0;
	var counter  = 0;

function scroll() {
    pos++;
    var scroller="";
    if((pos > scrtxt[counter].length) || (pos > width)) {
      pos = 0;
      counter++;
    }
    if(counter == number) { counter = 0; }

    scroller=scrtxt[counter].substring(0, pos);
    document.pad.ticker.value=scroller;
    if(pos == scrtxt[counter].length)
 	  setTimeout("scroll()", 2000);
      else
	  setTimeout("scroll()", 25);
}
