/*
$(function(){
    var sets = [], temp = [];
    $('.category-box h3').each(function(i) {
        temp.push(this);
        if (i % 4 == 3) {
            sets.push(temp);
            temp = [];
        }
    });
    if (temp.length) sets.push(temp);

    $.each(sets, function() {
        $(this).flatHeights();
    });
});
*/


$(function(){
	$('#home .service-section p.summary').flatHeights();
	$('#home .information-inner ul').flatHeights();
    $('.article .column').flatHeights();
	$('#contents .profile .column').flatHeights();
	$('.page_archive .archive_index .column').flatHeights();
	$('.page_archive .entry-archive .column').flatHeights();
	$('.page_archive .page .column').flatHeights();
	$('#solution-article .solution-section').flatHeights();
	$('#closeupit #pickup-section .report-bottom').flatHeights();
	$('#closeupit #regular-section .report-bottom').flatHeights();
	$('#closeupit .column').flatHeights();
	$('#sitemap .column').flatHeights();
	$('#search .column').flatHeights();
});

function error_none(){
  return true;
}
onerror = error_none;


