$(document).ready(function(){
$('table.striped tr').mouseover(function() {$(this).addClass('over');}).mouseout(function() {$(this).removeClass('over');});
$('table.striped tbody tr:nth-child(even)').addClass('alt');
});