$(function() {
    $("tbody tr:nth-child(odd)").addClass("row_odd");
    $("tbody tr:nth-child(even)").addClass("row_even");
    $("tbody tr").mousemove(function() {
        $(this).addClass("row_select");
    }).mouseout(function() {
        $(this).removeClass("row_select");
    });
});