function init_support() {			
  $('dd').hide();
    $('dt').click(function(evt) {
      var answer = $(this).next('dd');

      if(answer.is(':hidden')) {
      	$('dd').hide(200);
        $(this).addClass('question-opened');
        $(this).next('dd').show(300);
      } else {
        $(this).removeClass('question-opened');
        $(this).next('dd').hide(300);
      }
  });
}

