$("body").children().ready(function() {
	$("body").children().hide();
});

$("body").ready(function() {
	$("body").children().fadeIn(2000);
});