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