var home,box;
function index_onReady(){
	home=$("#home");
	box=$("#box");
	home.hide();
	home.fadeIn(1000,index_onHomeFadeInComplete);	
	box.hide();
}
function index_onHomeFadeInComplete(){
	box.fadeIn(500);
}
$(index_onReady);
