﻿function go(pos) {
	document.getElementById("maennchen").style.marginLeft = pos*3+"px";
	if(document.innerWidth) {
		if(document.innerWidth<pos*3+290) pos=-30;
	}
	else if(document.body.clientWidth) {
		if(document.body.clientWidth<pos*3+290) pos=-30;
	}
	window.setTimeout("go("+(pos+1)+");", 100);
}
go(-20);
