function testify() {
  var target = $('testify')
  var testimonials = $('testimonials').childElements()
  var chosen = testimonials[Math.floor(Math.random() * 1000) % testimonials.size()]

  chosen.down('.person').innerHTML += '<br/>' + chosen.down('.org').remove().innerHTML
  target.innerHTML = chosen.innerHTML
  chosen.remove()
}

Event.observe(window, 'load', testify)

