var msg ="Free annual credit reports are now available in the United States through each of the three credit bureaus. Call 877-322-8228 or visit www.annualcreditreport.com to request your free credit report.";
var timer;
function scrollMaster () {
clearTimeout(timer)
for (var i= 0; i < 30; i++){msg = " " + msg;}
scrollMe()
}
function scrollMe(){
window.status = msg;
msg = msg.substring(1, msg.length) + msg.substring(0,1);
timer = setTimeout("scrollMe()", 130);
}
scrollMaster();