$(document).ready(function() {
    $(".stripe tr:gt(0)").mouseover(function() {
        $(this).addClass("over");
    });
    $(".stripe tr:gt(0)").mouseout(function() {
        $(this).removeClass("over");
    });
    $(".stripe tr:even").addClass("alt");
});
