function focusLink(id) {
	var e = document.getElementById(id);
	e.style.color = "#e2001a";

	return true;
}

function blurLink(id) {
	var e = document.getElementById(id);
	e.style.color = "#000000";

	return true;
}

function menuFocus(id) {
	document.getElementById('p' + id).src = '/' + PATH + 'images/layout/persons/0' + id + 'c.gif';

	return true;
}

function menuBlur(id) {
	if(document.getElementById('p' + id).alt != 'active') {
		document.getElementById('p' + id).src = '/' + PATH + 'images/layout/persons/0' + id + '.gif';
	}

	return true;
}
