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