var i=0;
var t;

function scrollL(){
	document.getElementById('info').scrollLeft=document.getElementById('info').scrollLeft+3;
	t=setTimeout(scrollL, 1);
}

function scrollR(){
	if (document.getElementById('info').scrollLeft>0){
		document.getElementById('info').scrollLeft=document.getElementById('info').scrollLeft-3;
		t=setTimeout(scrollR, 1);
	}
}

function stopScroll(){
	clearTimeout(t);
}
