/**
*
*/
$(document).ready(function() {
  $('h3.past a').click(function() {
    $('ul.past').slideToggle(100);
    return false;
  })
});
