$(document).ready(function() {

	$('.box_faq p').hide();
	$('.box_faq').css("cursor", "pointer");
	$('.box_faq').click(function() {
		$('.box_faq p').slideUp("fast");
		$('.box_faq').css("cursor", "pointer");
		$(this).find("p").slideDown("fast");
		$(this).css("cursor", "none");
	});

});