$(function(){
	var time = 2500;
	$("#indexCatchText01").fadeIn(time);
	$("#indexCatchText02").fadeIn(time, function(){
		$("#indexCatchText03").fadeIn(time);
	});
});

