	// JavaScript Document
	function walk(tickertext)
	{
	  text=tickertext.slice(1,tickertext.length)+tickertext.slice(0,1);
	  document.tickerform.tickerfeld.value=text;
	  window.setTimeout("walk(text)",160);
	}


	function initialize(tickertext)
	{  document.write('<FORM NAME="tickerform" style="padding:0px; margin=0px">');
	   document.write('<div style="border-style:solid; background:#FFFFFF; margin:0px; ');
	   document.write(' width:420; border-width:0;');
	   document.write(' border-color:#000000">');
	   document.write('<INPUT TYPE=TEXT style="border-style:none;" class="text_newsticker" style="width:420;background:#FFFFFF;" NAME="tickerfeld"  readonly>');
	   document.write('</div></FORM>');
	   walk(tickertext);
	}


