/*
* Table with 2 colors of alternate rows should have one of listed below classes and used with jQuery.
* Set appropriate colors for even/odd table classes in CSS files.
*/
$( function(){
$('table.evenodd tr:even').addClass('even');
$('table.evenodd tr:odd').addClass('odd');
$('table.evenoddcat tr:even').addClass('even');
$('table.evenoddcat tr:odd').addClass('odd');
});

