	var xposition = 0;
	
	function move() {
			document.all.afbeeldingenkl.style.right = xposition;
			xposition += 1;
			if (xposition>=600) xposition = 600;
			setTimeout("move()",5);
			}
			
	function moveleft() {
			document.all.afbeeldingenkl.style.right = xposition;
			xposition -= 1;
			if (xposition<=100) xposition = 100;
			setTimeout("move()",5);
			}
