$(document).ready(function(){
	$('.question a').click(function(e) {
    	e.preventDefault();
        $(this).parent().find("p").slideToggle("fast");
    });
});