Here is a javascript example for the lower menu line. Look for the
"Welcome to my Home Page!" on the bottom menu line.
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com
var text = "Welcome to my Home Page!"
var speed = 200
var x = 0
function bb() {
var a = text.substring(0,x)
var b = text.substring(x,x+1).toUpperCase()
var c = text.substring(x+1,text.length)
window.status = a + b + c
if (x == text.length) {
x = 0
}
else {
x++
}
setTimeout("bb()",speed)
}
bb();
//-->