hpImages = new Array("Personne vaut moins&nbsp;&nbsp;&nbsp;&nbsp;Chacun vaut plus","Niemand is minder&nbsp;&nbsp;&nbsp;&nbsp;Iedereen is meer","No one is less&nbsp;&nbsp;&nbsp;&nbsp;Everyone is more");

thisHp = 0;
imgCt = hpImages.length;

function rotate() {
	if (!document.getElementById) return false;
  thisHp++;
  if (thisHp == imgCt) {
   	thisHp = 0;
  }
  document.getElementById('niemand').innerHTML = hpImages[thisHp];
	setTimeout("rotate()", 3500);
}
