
// scroll text in status bar
// var space is leading blanks
// var scrollText is space plus message
var space = "                                                                            "
var scrollText = space + " Call ahead for Take-out --Hampton = 723-0600 ---- Yorktown = 591-0600 ---"
// define function
function SBScroll( )
{
temp = scrollText.substring(0,1);
scrollText += temp
scrollText = scrollText.substring(1,scrollText.lenght);
window.status = scrollText.substring(0,scrollText.lenght);
setTimeout("SBScroll( )",100);
}