// 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 Partnership with Altrincham F.C. Community Scheme & Altrincham F.C. Juniors" line[2]="Bookings for the Christmas Multi-Sports Drop & Shop in December now being taken" line[3]="Let us know what you think of the Soccerwise website" line[4]="Want to plan ahead, we have a 2 Day Multi-Sports Drop & Shop in December" line[5]="Wednesday 19th May 2011- Soccerwise Coaching Scheme Celebrate 13 years" line[6]="Wraparound Care for before & after Holiday Course times" line[7]="Dates for holiday courses in 2012 soon to be confirmed" //--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 // -->