

	var scrollCounter = 0;
	var scrollText    = "FGN-Guild | http://www.fgn-guild.com ";
	var scrollDelay   = 0;
	var i = 0;
	while (i ++ < 1)
	//De 10 is de afstand, vanaf links
 	   scrollText = " " + scrollText;
	function Scroller()
	{    window.status = scrollText.substring(scrollCounter++, scrollText.length);
	    if (scrollCounter == scrollText.length)  	scrollCounter = 0;
	    setTimeout(scrollDelay);}Scroller();

