$(function(){

	$('section#faq p').hide();

    $('section#faq a').click(function(){
      $(this).next("p").toggle();
   });
   
});
