$(document).ready(function()
{

	$("ul.faq li:has(.answer)").addClass("closed");
	$("ul.faq li > .answer").hide();
	$("ul.faq li .question").click(function()
	{
		if( $(this).parent("li").attr("class") == "closed" )
		{
			$(this).parent("li").attr("class", "opened");

			$(this).next(".answer").show();
		}
		else if( $(this).parent("li").attr("class") == "opened" )
		{
			$(this).parent("li").attr("class", "closed");

			$(this).next(".answer").hide();
		}
	});	
});