$(document).ready(function() {
 // hides the Full-Help as soon as the DOM is ready (a little sooner that page load)
  $('#courseFinder-help-all').hide();
  
 // Toggle the Full-Help on click    
  $('#slick-slidetoggle').click(function() {
    $('#courseFinder-help-all').slideToggle(400);
    return false;
  });
  
  // hides the Full-time Help as soon as the DOM is ready (a little sooner that page load)
  $('#courseFinder-help-ft').hide();
  
 // Toggle the Full-time Help on click    
  $('#slick-slidetoggle-ft').click(function() {
    $('#courseFinder-help-ft').slideToggle('fast');
    return false;
  });
  
  // hides the Part-time Help as soon as the DOM is ready (a little sooner that page load)
  $('#courseFinder-help-pt').hide();
  
 // Toggle the Part-time Help on click    
  $('#slick-slidetoggle-pt').click(function() {
    $('#courseFinder-help-pt').slideToggle('fast');
    return false;
  });
  
  // hides the Self Study Help as soon as the DOM is ready (a little sooner that page load)
  $('#courseFinder-help-self').hide();
  
 // Toggle the Self Study Help on click    
  $('#slick-slidetoggle-self').click(function() {
    $('#courseFinder-help-self').slideToggle('fast');
    return false;
  });
});