
line=new Array()
line[1]="O2 arena: 08.06. EAGLES Long Road out of Eden "
line[2]="O2 arena: 06.06. SENSATION The Ocean of White " 
line[3]="O2 arena: 10.- 19.07.52nd EUROPEAN YOUTH TABLE TENNIS CHAMPIONSHIP "
line[4]="O2 arena: 17.6. MÖTLEY CRÜE "
line[5]="O2 arena: 24.5. SIMPLY RED "

//PoÄŤet textĹŻ
lines=5 

temp=""
nextchar=-1;
nextline=1;
cursor=""
function animate(){
if (temp==line[nextline] & temp.length==line[nextline].length & nextline!=lines){
nextline++;
nextchar=-1;
document.bannerform.banner.value=temp;
temp="";
setTimeout("nextstep()",6000)}
else if (nextline==lines & temp==line[nextline] & temp.length==line[nextline].length){
nextline=1;
nextchar=-1;
document.bannerform.banner.value=temp;
temp="";
setTimeout("nextstep()",6000)}
else{
nextstep()}}

function nextstep(){

nextchar++;
temp+=line[nextline].charAt(nextchar);
document.bannerform.banner.value=temp
setTimeout("animate()",3)}

 


