jQuery(document).ready(function () {
    jQuery(".ascending h1").click(function () {
        jQuery(this).next().slideToggle();
    });
});
