function columnpage_include() {
	jQuery(window).load(function() {
		var cntheight = jQuery('.contentpage').height();
		var clmheight = jQuery('.columnpage').height();
		if(clmheight < cntheight) {
			jQuery('.columnpage').height(cntheight);
		}
	});
	jQuery(window).trigger('load');
}
