//////////////////////////////////////////////////////
//Written by Kevin Green - May-August/2008
//kevin.m.green[at]uscg.mil
//Description: Nifty tables takes tables with that given class
//name and then uses zebra striping to highlight
//odd rows
//////////////////////////////////////////////////////


//////////////////////////////////////////////////////
//Name: 		document.ready handler
//Parameters:	none
//Operations:	Once loaded, finds the table with the classname and assigns classes
// Also highlights the last row differently for tables with hilightLast class
//Preconditions:none
//Returns:		void
$(document).ready(function(){

	$(".tableWide tr:even td").addClass("even");
	$(".tableWide tr:odd td").addClass("odd");
	$(".hilightLast tr:last td").addClass("totals");

});//end function document.ready
