
	var BooScroll;
	
	function setScroll()
	{
		BooScroll = false;
	}
	
	function moveNow()
	{
		BooScroll = true; 
	}
	
	
	function stopScroll()
	{
		BooScroll = false;	
	}
	
	function moveBar(Ereignis){
		 if(BooScroll == true){ 	
			if (!Ereignis) Ereignis = window.event;
			var ScrollFildTop = document.getElementById('scrollfild').offsetTop + document.getElementById('jScrollPaneContainer').offsetTop + document.getElementById('main').offsetTop;
			var ScrollFrame  = document.getElementById('pane1').offsetHeight;
			var ScrollHeight = document.getElementById('scroll-pane').offsetHeight;
		
			differenz = Ereignis.clientY - ScrollFildTop;
			if(differenz >= 8 && differenz <= 157)
			{
				tempdifferenz = differenz - 7
				document.getElementById('bar').style.top = tempdifferenz  + "px";
			    tempContnetTop = ((ScrollHeight - ScrollFrame) / 150) * tempdifferenz
			    document.getElementById('scroll-pane').style.top = "-" + tempContnetTop + "px";
			}
			else if(differenz <= 149)
			{
				document.getElementById('bar').style.top = 0 + "px";
			}
			else
			{
				document.getElementById('bar').style.top = 150 + "px";
			}

		}
	}
	

