// JavaScript Scrollbar by Sebastian Groll


// Dieser Code ist Eigentum der Firma Sebastian Groll Programmierungen
// Keine freie Benutzung erlaubt. Kein OpenSource!

var posY = 0;
var halt = false;

		function down()
		{	
			if(halt)
				{
					halt = false;
					return;
				}
				
				
			document.getElementById("scrolltext").style.top=posY + "px";
	
			if(document.getElementById("scrolltext").clientHeight -260 > posY * -1   )
				posY--;	
		
		    setTimeout("down()", 20);
		}
		
		
		function stoppen()
		{
			halt = true;
		}
		
		
		function up()
		{
			
			if(halt)
				{
					halt = false;
					return;
				}
				
				
	     	document.getElementById("scrolltext").style.top=posY + "px";		
			
			if(!posY<=0)
				posY++;			
			setTimeout("up()", 20);
		}
