MJL.event.add(window, "load", function() {
    // MJL に関係するコードはこの中に記述
    MJL.enable.rollover("roll");
    MJL.enable.heightEqualizer("equalize");
	MJL.enable.heightEqualizer("list-index-01", {groupBy : 2});
    MJL.enable.heightEqualizer("list-index-01", {
        groupBy : 2,
        collect : function(parent) {
            return MJL.getElementsByClassName(parent, "outline");
        }
    });

	//MJL.enable.heightEqualizer("list-index-01", { groupBy : 2 });
});

// MJL と無関係なコードはこの先に記述

