jQuery(function($){
    $('td#awards div').hide();
    $('td#awards h2').click(function(event){
        event.preventDefault();
        $(this).toggleClass('open').next('div').slideToggle();
    });
});