$.fn.zebra = function()
{
	this.each( function()
	{
		$( 'tr:even', this ).addClass( 'even' );
	});
}
