
$(document).ready ( function() {
    $(".ilist tr:gt(0)").hover(function () {
        $(this).addClass("il-hover");
    },
    function() {
        $(this).removeClass("il-hover");
    });
});