
$(function(){
		   
	$(".answer").hide();	
	$(".question").click(function(){
		$(this).parent().next(".answer").slideToggle("normal");
		$(this).toggleClass("close");		
		return false;
	});	
	
	/*$(".faqheader").each(function(){
		var thisID = $(this).attr("id");
		$(this).after("<p><a href=\"#\" class=\"showall\" id=\"" + thisID + "\">Show all</a></p>");						  
	});
	
	$(".showall").toggle(
		function(){
			var thisClass = "." + $(this).attr("id");
			$(thisClass).show();
			$(this).text("Hide All");return false;
		},
		function(){
			var thisClass = "." + $(this).attr("id");
			$(thisClass).hide();
			$(this).text("Show All");return false;
		});*/

});