// JavaScript Document
<!-- 
	// CHANGE THESE TO ALTER THE SCROLL SPEED
	ScrollSpeed = 1;  // milliseconds between scrolls
	ScrollChars = 0;    // chars scrolled per time period
	function SetupTicker() {
	// add space to the left of the message
 	 msg = "  ";
 	 // PUT YOUR MESSAGE HERE, USE += TO ADD THEM TOGETHER
 	 msg += "*** T.J. Sokol Březník ***";
 	 // this starts the ticker
	RunTicker();
	}
	function RunTicker() {
	window.setTimeout('RunTicker()',ScrollSpeed);
	window.status = msg;
	msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);
	}
	// Start the ticker code
	SetupTicker();
<!-- end -->
