jQuery(document).ready(function() {

    jQuery('.featured.post.publish').hover(function() {
        jQuery(this).children('.entry-date.bigdate').hide();
    }, function() {
        jQuery(this).children('.entry-date.bigdate').show();
    });

});

