jQuery(document).ready(function () {
  //
  jQuery(".elementcal").hover(function () {
    jQuery(this).css({'background-image' : 'url(modules/agenda/images/AGs_02_off.jpg)','background-repeat' : 'no-repeat', cursor: "pointer"});
    }, function () {
    jQuery(this).css({'background-image' : 'url(modules/agenda/images/AGs_niv.06.jpg)', 'background-repeat' : 'no-repeat', cursor: "auto"});
  });
  //
  // redirection si clic sur case
  jQuery(".elementcal ").click(function(){
    var refid = jQuery(this).attr("rel");
    var hrefdate = jQuery('#'+refid).attr("href")
    window.location.href = hrefdate;
  });
  //
  // Visualisation des observations
  jQuery('img.obsavoir').hover(function () {
    var ident="#"+jQuery(this).attr("rel");
    jQuery(ident).show("slow");
    jQuery(this).css({ cursor: "pointer" });
    jQuery(this).animate({opacity: "0.3"}, 100);
    }, function () {
    jQuery(".obspublic").hide("slow");
    jQuery(this).css({ cursor: "auto" });
    jQuery(this).animate({opacity: "1.0"}, 100);
  });
  //  FIN Visualisation des observations
});






