$.fn.zebra = function()
{
	this.each( function()
	{
		$( 'tr:odd', this ).addClass( 'odd' );
		/*
		$( 'tr', this ).hover(
			function() { $( this ).addClass( 'hover' ); },
			function() { $( this ).removeClass( 'hover' ); }
		);
		*/
	});
}
