var curNr=0;
var iE;
var nE;

function highlight(nr)
{
  if(curNr!=0)
    dimlight();
    
  iE=document.getElementById("i"+nr);
  nE=document.getElementById("n"+nr);
  curNr=nr; 
  
  iE.src="img/team/t"+nr+"-2.jpg";
  //nE.style.color="#CC0033";
  nE.style.backgroundColor="#555555";
}

function dimlight()
{  
  if(curNr==0)
    return;
  iE.src="img/team/t"+curNr+"-1.jpg";
  //nE.style.color="#FFFFFF";
  nE.style.backgroundColor="transparent";
  
  //#555555
  curNr=0;
}
