$(document).ready(function() {
    $(".question").hide();
    $('.answer').hide();

    $(".quizsection").click(function(){
	$(this).children(".answer").hide("slow");        
	$(this).children(".question").toggle(400);
	
    });

    $(".question").click(function() {
        $(this).next('div').toggle(400);
        return false;
    });
    $(".answer").click(function(e) {
        return false;

    });


});