 <!-- Hide from old browsers 
 // All you have to do is put another text in the variable message. 
 // Don't forget to break all lines with a ^ 
 // When you do not place a ^ at the end of all the message, the 
 // message will not repeat 
 message     = "Welcome to Celtica Radio^" + 
"Check for Live Broadcasts^" + 
"Steve Edge from Newtown in Powys^" +
"Fred Stacey, from Newport in Gwent^" + 
"Bill Everatt, The Underground Edition from Bridgend^" + 
"Ed Risby AKA Friz from St Athan in the Vale of Glamorgan^" + 
"See our programme guide for more details^" +
"Don't forget our On Demand Programmes are Available 24 Hours a Day^" +
"Classical with Keith Berry-Davies^" +
"Trance / Dance Dave Easterbrook from Bridgend^" +
"Boogie with KC Jones^" +
"The Pete Davies Alternative from Pembroke^" +
"Lloyd Coles from Pembroke with Country^" +
"Comment with John Grierson from Cornwell^" +
"Soul with JL and the Vybe from Swansea^" +
"Showbiz and film news with Karl Burtonshaws Network^" +
"Controversial Talk on Zootime with Dave Cook^" +
"Free DVD Giveaways, Interact page, chat room, forum^" +
"Cool Products in the Celtica Radio Shop^" +
"Great Free Format Radio and much more!^" +
"© AlBilCo MediaComm Ltd & Celtica Radio Ltd. 2006^" +
               "^" 
 scrollSpeed = 25 
 lineDelay   = 1500 
 // Do not change the text below // 
 txt         = "" 
 function scrollText(pos) { 
   if (message.charAt(pos) != '^') { 
     txt    = txt + message.charAt(pos) 
     status = txt 
     pauze  = scrollSpeed 
   } 
   else { 
     pauze = lineDelay 
     txt   = "" 
     if (pos == message.length-1) pos = -1 
   } 
   pos++ 
   setTimeout("scrollText('"+pos+"')",pauze) 
 } 
 // Unhide --> 
scrollText(0) 





