window.onload=function(){ scrolling=0 messages=new Array('The first annual JSP tennis clinics at the Briarhill Courts have begun, click on Jackpot\'s corner for all the details') thebox=document.getElementById('abox'); if(messages.length>0){ window.setTimeout('scroll()',3000) currentmessage=0 changemessage() } } function scroll(){ scrolling=scrolling-2; thebox.style.left=scrolling+'px' if(eval(-scrolling)>thebox.offsetWidth){ thebox.style.left=document.getElementById('blackbox').offsetWidth+'px' scrolling=document.getElementById('blackbox').offsetWidth changemessage() } if(scrolling==3){ window.setTimeout('scroll()',3000) }else{ window.setTimeout('scroll()',100) } } function changemessage(){ thebox.innerHTML=messages[currentmessage] currentmessage++; if(currentmessage>messages.length-1) currentmessage=0 }