jQuery(function($){
    $('div.worksbox').autoHeight({
    // 1行のカラム数（n個）ごとにそろえる
    column : 3,
    // n個ごとの先頭に clear:both; を設定する
    clear  : 1,
    // 高さを minHeight ではなく height でそろえる
    height : 'height',
    // 高さを取得する前に一度セレクタに指定されている style 属性をリセットします
    reset : 'reset'
});
});






