<!--
// Replace 'Forum led by:...' text
// code by Stefan

e = document.getElementsByTagName('SPAN')
for (n = 0; n < e.length; n++) {
if (e[n].className == 'desc') {
as = e[n].getElementsByTagName('A')
for (i = 0; i < as.length; i++) {
a = as[i].previousSibling
if (a && 
    a.nodeName == '#text' && 
    a.nodeValue.match(/Forum Led by:/) &&
    a.previousSibling &&
    a.previousSibling.nodeName == 'BR') {
a.nodeValue = a.nodeValue.replace(/Forum Led by:/, '')
break
}}}}
// -->
