function changePerson(person) {
	// a bit hacky but it works!
	new Effect.Opacity('contentHere', {duration: 0.5, from: 1.0, to: 0.0, afterFinish: function () { $('contentHere').innerHTML = $('person_p_'+person).innerHTML; new Effect.Opacity('contentHere', {duration: 0.5, from: 0.0, to: 1.0}); } });
}