$(document).ready(function() 
{
	var seen = {};
	$('tr').each(function() {
		var txt = $(this).text();
		if (seen[txt])
			$(this).hide();
		else
			seen[txt] = true;
	});
});

