$(window).load(function() {
	//	左右のコラムの高さを揃える
	var colLeft = $(".col-left").outerHeight();
	var colRight = $(".col-right").outerHeight();
	if (colLeft < colRight) {
		$(".col-left").css("height", colRight);
	}
	else if (colRight < colLeft) {
		$(".col-right").css("height", colLeft);
	}
});
