$(function(){

    $(".question").live("click", function(){
    
        $(this).next().slideToggle();
    
    });
	
});
