MJL.event.add(window, "load", function(event) {
    // MJL に関係するコードはこの中に記述
    MJL.enable.flash("flash");
    MJL.enable.rollover("roll",{disable:"unroll"});
    MJL.enable.tab("tabs");
    MJL.enable.heightEqualizer("equalize");
    MJL.enable.heightEqualizer("equalize-2", {groupBy : 2});
}, false);

// MJL と無関係なコードはこの先に記述
$(function(){
    // 人気ジャンル一覧の開閉
    $("#btn-genre").click(function(){
        $(".genreBox").css({opacity:.6}).stop().animate({width:360, opacity:1},{queue:false, duration:1000, easing:"easeOutExpo"});
        return false;
	});
    $("#btn-close").click(function(){
        $(".genreBox").stop().animate({width:0, opacity:0},{queue:false, duration:600, easing:"easeOutCubic"});
        return false;
	});
});
