// JavaScript Document
//最下部バナー部分の高さを合わせる

window.onload = function(){
	var height = document.getElementById("bnTxt01").offsetHeight;
	$(".bnTxt02").css("height", height);
}

