// Une fois le chargment de la page terminé ...
$(document).ready(  function()
{
	
	$("#agenda-box_contents").children().hide();
	
	$('.content_1').show();
	$('#content_1').addClass("onglet_on");

	$('a.onglet').click(function() { 
	
		$(".onglet_on").addClass("onglet");
		$(".onglet_on").removeClass("onglet_on");
		$(this).addClass("onglet_on");
		
		var contenu_aff = $(this).attr("id");

		$("#agenda-box_contents").children().slideUp("fast");
		$('.'+contenu_aff).slideDown("fast");
		
	});	


	
});