/* Author: rmeyer

*/

$('.more').click(function(){
  window.location = this.href
});

$('.intro').toggle(function() {
  var name = this.id.split('-')[1];
  $('#text-'+name).show();
}, function() {
  var name = this.id.split('-')[1];
  $('#text-'+name).hide();
});

