$(document).ready(function(){
	$("#boxes").animate({ 
			top: "470px"
	}, 2000, function() {
		$("#stoerer").animate({
			bottom: "0px"
		}, 1500 );
		$("#content").show(300);
	});
});