/*



*/

ScrollSpeed = 1000; // milliseconds between scrolls NOTE a smaller number means faster scroll
ScrollChars = 10; // chars scrolled per time period NOTE a smaller number means a slower scroll


function SetupTicker() {
// add space to the left of the message
// add Message text below
msg = " .:: SINDIRECEITA - Sindicato Nacional da Carreira Auditoria da Receita Federal do Brasil ::. ";
RunTicker();}

function RunTicker() {
window.setTimeout('RunTicker()',ScrollSpeed);
window.status = msg;
msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);}
SetupTicker();

//-->