.jv-job-list {display: none;}
.expanded {display: block;}
// .h2 class is applied to category (or however you're grouping) headers.
// if you need to be more specific, then change jobCategoryContent macro
<script>
$('.h2').click(function() {
$(this).next('table').toggleClass('expanded')
});
</script>