
$(document).ready(function () {
	$('.ag_date .desc').hide();
	
	$('.titre').click( function() {
		if ($(this).parent().find('.desc').is(':hidden')) {
			$('.ag_date .desc').slideUp('normal');
			$(this).parent().find('.desc').slideDown('normal');
		} else {
			$(this).parent().find('.desc').slideUp('normal');
		}
		return false;
	});
});