jQuery(document).ready(function(){
    jQuery(".yearlyList ul").css("display","none");
    jQuery(".yearlyList").click(function(){
        jQuery(this).children().slideToggle("slow");
    });
});




jQuery(document).ready(function() {
    jQuery(".info_entry_event").css("margin-bottom","12px");
    jQuery(".eventList dd").hide()
    jQuery(".eventList dt").click(function() {
        jQuery(this).next().slideToggle("slow");
    });
});





