$(document).ready(function() {
  $('.agenda-block > ol > li').corner('3px');

  $('.agenda-block .calendar_title').click(function () {
    $(this).next('ul').toggle('show');
  });
});