 $(document).ready(function() {
       $('#faq2').find('.more2').hide().end().find('span').click(function() {
     $(this).next().slideToggle();
      });
     $('.more').find('p').hide().end().find('h5').click(function() {
     $(this).next().slideToggle();
   });

 });

