$(document).ready(function()
{
	$(".question").click(function()
		{
		$other = $(this).parent().find();
		$slider = $(this).next(".answer");
		if ($slider.is(":hidden"))
			{
				$slider.slideDown("slow");
			}
			else
			{
				$slider.slideUp("slow");
			}
		});
});