OK, found it
You will need to put this in <HTML><HEAD> here </HEAD><BODY> etc etc
<SCRIPT LANGUAGE="JavaScript">
<!--
// Use the following three variables
// to set up the message:
var msg = "Welcome to MY BUDGIE BIBLE! Please enjoy your stay!"
var delay = 50
var startPos = 100
// Don't touch these variables:
var timerID = null
var timerRunning = false
var pos = 0
// Crank it up!
StartScrolling()
function StartScrolling(){
// Make sure the clock is stopped
StopTheClock()
// Pad the message with spaces to
// get the "start" position
for (var i = 0; i < startPos; i++) msg = " " + msg
// Off we go...
DoTheScroll()
}
function StopTheClock(){
if(timerRunning)
clearTimeout(timerID)
timerRunning = false
}
function DoTheScroll(){
if (pos < msg.length)
self.status = msg.substring(pos, msg.length);
else
pos=-1;
++pos
timerRunning = true
timerID = self.setTimeout("DoTheScroll()", delay)
}
//-->
</SCRIPT>
This should work perfectly fine

I don't have a page i can test it on, but as you've already got the website going, I'm sure you've got enough HTML knowledge to figure it out...if you need help, I am but a question away
