jQuery.noConflict();
jQuery(document).ready(function() {
var datee= new Date();
datedujour = datee.getDate();
jQuery('td span').each(function(){
if(jQuery(this).text()==datedujour){
jQuery(this).parent().addClass('jourencours');
}
});
//test=jQuery('td span').text();
jQuery('td span').hover(function(){
jQuery(this).fadeOut(100,function(){jQuery(this).fadeIn(500);});
});
/*jQuery('td.one').toggle(function(){jQuery('#fond').fadeOut(100); },function(){ jQuery('#fond').fadeIn(200); });
jQuery('#fond').click(function(){jQuery(this).hide();});*/
jQuery('.objet').hide();
jQuery('td span').click(function(){
jQuery(this).parent('td').unbind("hover");
jQuery(this).parent().addClass('current');
jQuery(this).next('.objet').fadeTo("fast",0.9, finouverture);
//jQuery(this).siblings('td').children('p').hide();
});
jQuery('.objet').click(function(){
jQuery(this).fadeTo("fast",0, finfermeture);
jQuery(this).parent().removeClass('current');
});
});

function finouverture(){
jQuery(this).show();
}

function finfermeture(){
jQuery(this).hide();
}
