// JScript File /* Typing Scroller Submitted by bengaliboy00@hotmail.com (hp: http://www.angelfire.com/nt/bengaliboy/) With modifications by Dynamicdrive.com For full source code, usage terms, and 100s more scripts, visit http://dynamicdrive.com */ //Secify scroller contents var line=new Array() line[1]="Soccerwise Partnerships with both Altrincham Football Club & Altrincham F.A." line[2]="Bookings for the Summer Holiday Courses now being taken" line[3]="Let us know what you think of the Soccerwise website" line[4]="Want to plan ahead, we have 5 weeks of courses in the Summer Holidays" line[5]="Wednesday 19th May - Soccerwise Coaching Scheme Celebrate 12 years" line[6]="Wraparound Care for before & after Summer Holiday course times" //--Don't edit below this line var longestmessage=1 for (i=2;iline[longestmessage].length) longestmessage=i } //Auto set scroller width var tscroller_width=line[longestmessage].length lines=line.length-1 //--Number of lines //if IE 4+ or NS6 if (document.all||document.getElementById){ document.write('

Latest News: ') document.write('') document.write('

') } temp="" nextchar=-1; nextline=1; cursor="\\" function animate(){ if (temp==line[nextline] & temp.length==line[nextline].length & nextline!=lines){ nextline++; nextchar=-1; document.ticker_form.tick.value=temp; temp=""; setTimeout("nextstep()",3000)} else if (nextline==lines & temp==line[nextline] & temp.length==line[nextline].length){ nextline=1; nextchar=-1; document.ticker_form.tick.value=temp; temp=""; setTimeout("nextstep()",3000)} else{ nextstep()}} function nextstep(){ if (cursor=="\\"){ cursor="|"} else if (cursor=="|"){ cursor="/"} else if (cursor=="/"){ cursor="-"} else if (cursor=="-"){ cursor="\\"} nextchar++; temp+=line[nextline].charAt(nextchar); document.ticker_form.tick.value=temp+cursor setTimeout("animate()",30)} //if IE 4+ or NS6 if (document.all||document.getElementById) window.onload=animate // -->