// コンフリクト回避設定
jQuery(function($) {



$(document).ready(function(){
		
			$("#topImgtxt02").hide();
			$("#topImglogo").hide();
			$("#topImgtxt01").css("z-index","11");
			$("#topImgtxt01").hide().fadeIn(2000);
			$("#topImgtxt01").fadeIn(function () {
				$("#topImgtxt02").css("z-index","12");
				$("#topImgtxt02").fadeIn(2000);
				$("#topImgtxt02").fadeIn(function () {
					$("#topImglogo").css("z-index","13");
					$("#topImglogo").fadeIn(2000);
				});
			});


});


// コンフリクト回避設定を閉じる。
});



