$(document).ready(function() {
	
	$(".question h3").click(function(){
		$(this).next(".text").slideToggle(100)
		$(this).parent().parent().toggleClass("openq")
		return false;
	}); 

});
