function columnfront_include() {
	jQuery(window).load(function() {
		var cntheight = jQuery('.contentfront').height();
		var clmheight = jQuery('.columnfront').height();
		if(cntheight < clmheight) {
			jQuery('.contentfront').height(clmheight).addClass('bugfix').removeClass('bugfix');
		}
	});
	jQuery(window).trigger('load');
}
