(function($){

$(document).ready(function()
{

	$('.CommentHeader ul li a').not('.WhisperBack').each(function()
	{
		var user = $(this);
		var info = $('.role-tip-data.'+ user.text());
		var list = $(this).parents('li:first');

		if (info.length == 0) return;

		$('<strong>').addClass('role-tip').text(' ('+ info.find('.r').text() +') ').appendTo(list);
	});
});

})(jQuery);
