window.onload = function() {
  
  /* ROUND CORNERS */
  Nifty("div.separator h3", "bottom transparent");
  Nifty("div.events h4");
  
  if ($('participants')) {
    var name = $('participants').getProperty('name');
    new Ajax('/system/remote/get.participants.php?event=' + name, {
        method: 'get',
        update: $('participants')
      }).request();
  }
  
}