// JavaScript Document
function highlightName(id){
	document.getElementById(id).className = "team_foto_highlighted";
	var id = id.substring(5)
	var name = "naam_"+id;
	document.getElementById(name).className = "team_naam_highlighted";
}

function lowlightName(id){
	document.getElementById(id).className = "team_foto";	
	var id = id.substring(5)
	var name = "naam_"+id;
	document.getElementById(name).className = "team_naam";
}




function highlightPhoto(id){
	document.getElementById(id).className = "team_naam_highlighted";
	var id = id.substring(5)
	var foto = "foto_"+id;
	document.getElementById(foto).className = "team_foto_highlighted";
}

function lowlightPhoto(id){
	document.getElementById(id).className = "team_naam";	
	var id = id.substring(5);
	var foto = "foto_"+id;
	document.getElementById(foto).className = "team_foto";	
}