ScrollSpeed = 100;
ScrollChars = 1;
function SetupTicker(){
	msg = "***  Pixel Productions will set you up with FREE anti-virus and anti-malware protection for life! ***   "
	RunTicker();
}
function RunTicker(){
	window.setTimeout('RunTicker()', ScrollSpeed);
	window.status = msg;
	msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);
}
SetupTicker();
