﻿/*--------------------------------------------------------------------------*
	jquery.tile.js (for TOP page)
www.akatsukinishisu.net/itazuragaki/data/js/i20070801/jquery.flatheights.js
--------------------------------------------------
【記述例】top.js へ記述
$(function(){
    $('.boxes').flatHeights(); // .boxes が付けられた要素の高さが揃う
    $('#box1 > div').flatHeights(); // #box1 の子要素（例では div）の高さが揃う
    $('#box2, #box3, #box4').flatHeights(); // 指定した要素同士の高さが揃う
});
 *--------------------------------------------------------------------------*/
$(function() {
    $('#main > div').flatHeights();
    $('#footer #contents01, #footer #contents02, #footer #contents03, #footer #contents04, #footer #contents05').flatHeights();
});
