$(document).ready(function(){
    $("table.table_striped tr:nth-child(even)").addClass("even");
    $("table.table_striped tr:nth-child(odd)").addClass("odd");
});
