/*メニュー折りたたみ*/

jQuery(document).ready(function(){
    jQuery(".yearlyList ul").css("display","none");
    jQuery(".yearlyList").click(function(){
        jQuery(this).children().slideToggle("slow");
    });
});
