jQuery(document).ready(function() {
  setup_events();
  set_period();
})

function setup_events() {
  jQuery('#user_prep_department').livequery('click', function(event) {
    this.checked ? jQuery('#period').show() : jQuery('#period').hide();
  });
}

function set_period() {
  jQuery('#user_prep_department').attr('checked') ? jQuery('#period').show() : jQuery('#period').hide();
}

