$(document).ready(function()
{
	$(".ViewField_PRYear").each(function()
	{
		theYear = $(this).text();
		$(".ViewField_PRYear[title=" + theYear + "]:not(:first)").css('display','none');
	});
	
	$(".ViewField_NLYear").each(function()
	{
		theYear = $(this).text();
		$(".ViewField_NLYear[title=" + theYear + "]:not(:first)").css('display','none');
	});
	
	$(".ViewField_EVYear").each(function()
	{
		theYear = $(this).text();
		$(".ViewField_EVYear[title=" + theYear + "]:not(:first)").css('display','none');
	});
});
