$(document).ready(function() {
    $(".sous-rubrique").hide();
    $(".rubrique").toggle( 
		function() { $(".sous-rubrique").hide(); $(this).next().show(); }, 
		function() { $(this).next().hide(); 
	} );
	$(".on").show();
});

