function CalGotomonth(m,y) { $('#cal_wait').show(); $('#calendar').load('/ajax/calendar.php?m='+m+'&y='+y, function(){$('#cal_wait').hide()}); } function CalInfosShow(c,l, day) { $('#cal_infos').css('background-image', 'url(/ajax/../img/calendar/top-c'+c+'.png)'); $('#cal_bottom').css('marginLeft', 18+(c-1)*38+"px"); html=''; $('.cal_info_'+day).each(function(){html+=$(this).html()}) $('#cal_content').html(html); //$('#cal_box').animate({ 'marginTop' : (l-1)*35-115+"px" },100); // ou $('#cal_box').css('margin-top', (l-2)*35-117+"px"); $('#cal_box').show(); } function CalInfosHide() { $('#cal_box').hide(); }