/* <![CDATA[ */	
	var intervalHandle;
	var scrollStep = 7;
	var scrollInterval = 50;
	function scrt()
	{
		if ( parseInt(document.getElementById("navlist").style.left) > - 635 )
			document.getElementById("navlist").style.left=(parseInt(document.getElementById("navlist").style.left)- scrollStep)+"px";
	} 
	function sclt()
	{
		/* -35, da padding-left und margin von navlist & navcontainer */
		if ( parseInt(document.getElementById("navlist").style.left) < -35 )
		document.getElementById("navlist").style.left=(parseInt(document.getElementById("navlist").style.left) + scrollStep)+"px";
	
	}	
	function initScrolling(direction)
	{
		if ( "lr".indexOf(direction) == -1 ) return false;
		intervalHandle = setInterval('sc'+direction+'t()',scrollInterval);
	}	
	function stopScrolling()
	{
		clearInterval(intervalHandle);
	}
	
	//Nicht für IE >= 5.0, der macht mist damit
	if ( typeof rootpath == 'undefined') var rootpath = './';
	if ( navigator.userAgent.indexOf("MSIE 5") == -1 ) 
document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\""+rootpath+"/styles/navjsenabled.css\" />");
/* ]]> */