<!--
// You may edit the message within the 
// quotation marks. 
 var msg1 =  "H E L P   -   We   are   looking   for   keen   footballers  of all ages to join our club  -   Please   contact   us   to   find   out   all   the   benefits   there   are   of   joining   our   club........................................Want to advertise on our website - if so please contact us.......................................";

function startScroller()
{
   document.scrollForm.scrolling_message1.value = msg1
   msg1 = msg1.substring(1, msg1.length) + msg1.substring(0, 1)
//   document.scrollForm.scrolling_message2.value = msg2
//   msg2 = msg2.substring(1, msg2.length) + msg2.substring(0, 1)
// This editable setting dictates how quickly
// each character moves across the scroll box
// (ex. 150=.15 seconds).  
   setTimeout("startScroller()",75)

}
//-->
