$().ready(function() {
	var maxHeight = 0;
	// Set height if there are more than 0 leaders.
	if ($('#forumLeaders').children().size()) {
		// Find max height.
		var check = $('#forumLeaders > li:first-child');
		while (1) {
			if (check.height() > maxHeight)
				maxHeight = check.height();	
			if (check.is(':last-child'))
				break;
			check = check.next();
		}
		// Apply max height to all elements in the row.
		check = $('#forumLeaders > li:first-child');
		while (1) {
			check.height(maxHeight);
			if (check.is(':last-child'))
				break;
			check = check.next();
		}
		$('#forumLeaders').addClass('jsSetHeight');
	}
});
