﻿$(document).ready(function(){
	$('table.striped tbody tr:not([th]):even').addClass('even');
	$('table.striped tbody tr:not([th]):odd').addClass('odd');
});

