$(function()
{
	$("div#qaBox div").hide();
	$("div#qaBox h5").each(function(i)
	{
		var elementVal = $(this).next("div");
		
		$(this).click(function()
		{
			elementVal.toggle("slow");
		});
	});

});
