$(document).ready(function(){
	// pour le calendrier
	if($("#calendrier3_child").length==1)
    {
	  $("#calendrier3_child").datepicker({dateFormat: 'dd-mm-yy'});
	  $("#calendrier3_child").css('visibility', 'hidden');
	  $("#calendrier3_child").change(function() {window.location.href="index.php?act=pardate&date="+$(this).val();});
		}

	
	// on masque le détail des news
	$(".infos_detailes_masquees_even_agenda").hide();
	
	// plus d'infos
  $(".plus_infos_even_agenda > a").click(function(){
	  id=($(this).parents("div").parents("div").parents("div").attr("rel"));
		$("#moins_infos_"+id).hide();
	  $("#detail_"+id).show();
	  return false; // on desactive le lien
    });
});

