
            $(document).ready( function () {
                  $('.widget_recent_comments ul li').mouseenter( function () {
                         $(this).find('.recentcomment').show();
                         $(this).find('.avatar').addClass("hover");
                  }).mouseleave( function () {
                         $(this).find('.recentcomment').hide();
                         $(this).find('.avatar').removeClass("hover");
                  });
             });

