$(document).ready(function() {
    $("#poplist>ul>li").each(function(i) {
        $(this).hover(
            function() {$("div",this).fadeIn("fast");},
            function() {$("div",this).hide();}
        );
        if (document.all) {
            $(this).hover(
                function() {$(this).addClass("actived");},
                function() {$(this).removeClass("actived");}
            );
        };
    });
    $(".post>.entry>ol.code,.post>.entry>ul.code").find("li:even").css("background-color","#666");
})