js.addForumFullClick = function () {
  $each($$('#forum tbody tr'), function (f) {
    f.addEvent('click', function (event) {
      // Get element clicked
      e = event.target;
      // Don't want to override links
      if (e.get('tag') == 'a') return true;
      // Get table row parent
      while (e.nodeName.toLowerCase() != 'tr') { e = e.parentNode;}
      // Find first link (forum link) and follow it
      window.location = e.getElements('a')[0].href;
    });

    // Add 'clickable' class for CSS hooks
    f.addClass('clickable');
  });
}

window.addEvent('domready', js.addForumFullClick)

