$(document).ready(function() {
    $(".yearlyList ul").css("display","none");
    $(".yearlyList").click(function(){
        $(this).children().slideToggle("slow");
    });
});