$(document).ready(function() {
//
//  $('.hfc_collapsible_readmore').click(function() {
//    $(this).parent().children('.hfc_collapsible_cut').slideToggle('slow');
//
//  });

  $('.hfc_collapsible_readmore').toggle(function() {
      $(this).html(' Read Less&laquo;');
      $(this).parent().children('.hfc_collapsible_cut').slideToggle(300);
    },
    function() {
      $(this).html(' Read More&raquo;');
      $(this).parent().children('.hfc_collapsible_cut').slideToggle(300);
    }
  );

});

