$(function() {
	hiliteVisitedLink();
});

function hiliteVisitedLink() {
	var title = $('img.person').attr('title');
	$('a[title=' + title + ']').css('color', '#052E58');
	$('a[title=' + title + ']').css('text-decoration', 'none');
}

