$(document).ready(function() {
	$('.reponse').hide();
	$('.question').toggle(function(){
		$(this).parent('.qr').find('.reponse').slideDown('fast');
		},
		function(){
		$(this).parent('.qr').find('.reponse').slideUp('fast');
		});
	});