jQuery(document).ready(function(){
    jQuery('.job_button').toggle(function(){
            jQuery(this).next().show(300);
        }, function(){
            jQuery(this).next().hide(300);
        });
})
