$(document).ready(function() {
	function runIt(){
		$('#flugzeug').animate ({ left: "100px", top: "10px" }, 1000);
		$('#flugzeug').animate ({ left: "500px", top: "70px" }, 3500);
		$('#flugzeug').animate ({ left: "800px", top: "10px" }, 2500);
		$('#flugzeug').animate ({ left: "1000px", top: "70px" }, 2500);
		$('#flugzeug').animate ({ left: "1200px", top: "10px" }, 1500);
		$('#flugzeug').animate ({ opacity: "0" }, 2500);
		$('#flugzeug').animate ({ left: "0px", top: "70px" }, 2500);
		$('#flugzeug').animate ({ opacity: "1" }, 2500, runIt);
	}
	function runIt2(){
		$('#car').animate ({ right: "50px", bottom: "-30px",width: "181px", height: "186px" }, 2000);
		$('#car').animate ({ left: "1000px", bottom: "-10px" }, 1000);
		$('#car').animate ({ left: "800px", bottom: "0px" }, 1500);
		$('#car').animate ({ left: "700px", bottom: "10px" }, 2500);
		$('#car').animate ({ left: "500px", bottom: "0px" }, 2500);
		$('#car').animate ({ left: "200px", bottom: "10px" }, 1500);
		$('#car').animate ({ left: "0px", bottom: "30px" }, 1500);
		$('#car').animate ({ opacity: "0" }, 1500);
		$('#car').animate ({ left: "1200px", bottom: "70px",width: "81px", height: "84px" }, 2500);
		$('#car').animate ({ opacity: "1",left: "1000px", bottom: "-10px", width: "181px", height: "186px" }, 2500, runIt2);
	}
	runIt();
	runIt2();
});
