$(document).ready( function () {$("li:not('.open_at_load') ul.subMenu").hide();
$("li.toggleSubMenu span").each( function () {
var TexteSpan = $(this).text();
$(this).replaceWith('<a href="" title="Afficher le sous-menu">' + TexteSpan + '</a>') ;
} ) ;
$("li.toggleSubMenu > a").click( function () {
if ($(this).next("ul.subMenu:visible").length != 0) {
$(this).next("ul.subMenu").slideUp("normal", function () { $(this).parent().removeClass("open") } );
}
else {
$("ul.subMenu").slideUp("normal", function () { $(this).parent().removeClass("open") } );
$(this).next("ul.subMenu").slideDown("normal", function () { $(this).parent().addClass("open") } );
}
return false;
});
} ) ;    
function agenda_clic(month){
$.ajax({
type: "GET",
url: 'index.php?type=100',
data: "month="+month,
dataType: "html",
success: function(data) {
$('#calendrier').html(data);
}
});
}
