$(document).ready(function(){

    $(".day-contents").hover(function() {           
         
          $(this).children("div").animate({opacity: "show", top: "0"}, "slow");
         
    }, function() {
           
      $(this).children("div").animate({opacity: "hide", top: "-6"}, "fast");
         
    });

    });
