jQuery(document).ready(	function() {
	
			            jQuery(".question h3").click(function() {
			            	
			            	jQuery(this).parent().find(" > .answer").toggle();
			            	
			            });

					});

