$(document).ready(function() {
    $("a, li").hover(function () {
        $(this).addClass("hover");
      },
    function () {
        $(this).removeClass("hover");
    });
    $(".widget_rrm_popular_posts li").bind('click', function(e) {
        window.location.href = $("a", this).attr('href');
    });
});
