	var x = +250;
	function move(){
		var text = document.getElementById('lauftext').firstChild;
		text.style.left = x + 'px';
    x--;
		if(x <-2200){
			x = +500;
		}
		setTimeout("move();", 30);
	}
	window.onload = move;
  
