<!-- Hide script from old browsers
Speed = 130;  // milliseconds between scrolls
CharNum = 1;  // number of chars scrolled per time period
function doTicker() {  
	text = " . . . . . . . . . . Bestil tageftersyn på www.tagsult.dk ";  
	Scroll();
}
function Scroll() {  
	window.setTimeout('Scroll()',Speed);  
	window.status = text;  
	text = text.substring(CharNum) + text.substring(0,CharNum);
}
doTicker();
//-->
