ScrollSpeed = 150;
ScrollChars = 1;
function SetupTicker()
 {
// add space to the left of the message
msg = " ";
msg += "  Prodejna - otevřeno: Po-Pá: 7-16 hod. - telefon: 312 249 417. Po zavírací době možno volat mob: 602 321 598.  ";
msg += "  ";
// this starts the ticker
RunTicker();
}
function RunTicker()
 {
window.setTimeout('RunTicker()',ScrollSpeed);
window.status = msg;
msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);
}
SetupTicker();

