MJL.event.add(window, "load", function() {
    MJL.enable.heightEqualizer("equalize");
    MJL.enable.heightEqualizer("equalize_01", {
        groupBy: 2,
        collect: function(parent){
            return MJL.getElementsByClassName(parent, "box-content-inner");
        }
    });
    MJL.enable.heightEqualizer("lyt-col2", {
        groupBy: 2,
        collect: function(parent){
            return MJL.getElementsByClassName(parent, "box-content");
        }
    });
    MJL.enable.heightEqualizer("lyt-col2-01", { groupBy : 2 });
    MJL.enable.heightEqualizer("list-index-01", {
        groupBy: 3,
        collect: function(parent){
            return MJL.getElementsByClassName(parent, "box-content");
        }
    });
    MJL.enable.heightEqualizer("list-index-02", {
        groupBy: 3,
        collect : function(parent) {
			return MJL.convArray(parent.getElementsByTagName("a"));
        }
    });
    MJL.enable.rollover("roll", { active : "active" , disable : "unroll" });
});

