// jQuery script to stylize alternating rows of a table

var stylizeTableRows = {}; // declare this function outside of jQuery so we can use it elsewhere.

jQuery(document).ready(function($){
	
	stylizeTableRows = function() {
		$('tr:odd').addClass('odd');
		$('tr:even').addClass('even');
	}
	
	stylizeTableRows();
});