// MEDICAL POINT JAVA SCRIPT

$(document).ready(function() {
	
	// hide the p in the faq wrap
	$(".faq-wrapper p").hide();
	
	// if hedaer is clicked
	$('.faq-wrapper h4').click(function(event){
						$(this).parent().parent().find('p').slideToggle('slow')			   
	
	});
		
});
