$(document).ready(function(){
    $('table.collapsiblePanes tbody').hide();
    $('h2.clickable').append('&nbsp;<span style=\"font-size:7pt;\">click to toggle</span>');
    $('h2.clickable span').hide();
    $('table.collapsiblePanes thead tr td').click(function(e) {
        $(this).parents('table.collapsiblePanes').children('tbody').toggle();
        $('html, body').animate({scrollTop:(e.pageY-15)}, 'slow');
    });
    $('h2.clickable').mouseover(function(e) {
        $(this).children('span').show();
    });
    $('h2.clickable').mouseout(function(e) {
        $(this).children('span').hide();
    });
});
