$(document).ready(function() {
	var contentHeight = $("#content_main").outerHeight();
	var subHeight = $("#content_sub").outerHeight();
	if (subHeight < contentHeight) {
		$("#content_sub").height(contentHeight);
	}
});

