var timer=false;
var moving = false;
var stopslide = false;
var acc = 1;
var offx = 0;
function slide() {
	var el = window.document.getElementById('ticker');
	if (!el || stopslide) return;
	offx+=acc;
	if(offx>=1200) {
		offx = 0;
		moving = false;
		el.scrollLeft = offx;
		return;
	}
	el.scrollLeft = offx;
	moving = true;
}

timer = window.setInterval("slide()", 10);
