multiple jquery functions

multiple jquery functions

I have 3 jquery functions. Do i need to put them under separate functions or i need to put them put into one function? see below:

1. put in multiple functions:
  1. <script>
  2. $(function() { 
  3.  $('#calc_jyform').calx();
  4. });

  5. $(function() {
  6.     $("#checkboxID").change(function(){
  7.       $("#tableID tr.rowClass").toggle(!this.checked);
  8.     });
  9. });

  10. $(function() {
  11.      $('#checkboxID').click(function() {
  12.          var cb1 = $('#checkboxID').is(':checked');
  13.          $('#emailAddr').prop('disabled', !cb1);
  14.      });
  15.  });
  16. </script>

2. put into 1 function:
  1. <script>
  2.  $(function() {
  3.     //jquery calx do calculation
  4.     $('#calc_jyform').calx();
  5.     
  6.     //toggle table row upon checkbox click
  7.     $("#checkboxID").change(function(){
  8.       $("#tableID tr.rowClass").toggle(!this.checked);
  9.     });

  10.      //enable form field upon checkbox click
  11.      $('#checkboxID').click(function() {
  12.          var cb1 = $('#checkboxID').is(':checked');
  13.          $('#emailAddr').prop('disabled', !cb1);
  14.      });
  15.  });
  16. </script>