	var scrollStep=10;
	var timerLeft=0;
	var timerRight=0;
	var timerStep = 0;
	var reel = null;
	
	function scrollDivLeft(){
		clearTimeout(timerRight);
		reel.scrollLeft+=scrollStep;
		timerLeft=setTimeout("scrollDivLeft()",10);
		timerStep++;
		if(timerStep%10 == 0){
			getInfo();
		}
	}
	
	function scrollDivRight(){
		clearTimeout(timerLeft);
		reel.scrollLeft-=scrollStep;
		timerRight=setTimeout("scrollDivRight()",10);
//		timerRight=setTimeout("scrollDivRight()",2000);
//		$('#reelDiv').stop().scrollTo( '+=800', 500 );		
		timerStep++;
		if(timerStep%10 == 0){
			getInfo();
		}  
	}
	function stopMe(){
		clearTimeout(timerRight);
		clearTimeout(timerLeft);
	}