$(function() {
	$("#animate").click(function(){
		$("#harinezuko").fadeOut("fast");
		$("#machibari").fadeOut("fast");
		$("#hoge .inner").fadeOut("fast",
			function(){
				$("#topHeader").animate(
					{top: "0"},
					{queue : false,duration:"slow",
						complete:function(){
							$("#contents").fadeIn("slow");
							$("#hogege").fadeIn("slow");
						}
					}
				);
			}
		);
	});
});
