$(document).ready(function() {
	$(".leaderboard tr:not(.heading-row)").each(function() {
		var i=0;
		
		$(this).children('td').each(function() {
			i++;
			if(i == 1 || i == 5 || i == 6 || i == 7 || i == 11)
			{
				$(this).addClass('highlight-row');
			}
		});
		
	});						   
});