$(document).ready(function(){
	$('#statistiques > ul > li').click(function() {
		var idCourant,
		idCourant = this.id;
		$('.content-stats').each(function() {
			if(this.id != idCourant+'_r') {
				$(this).hide();
			}
			else {
				$(this).show();
			}
		});
	});
});
