// JavaScript Document

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