Drupal.behaviors.comments= function(context) {
	$('.comments-accordion .head', context).each(
    function() {
      var elem = $(this);
		  elem.click(function() {
		    elem.toggleClass('expanded').next().toggle('slow');    
		    
      });
    }
	).next().hide();
};
