/* Needs IE testing to make sure onload fires with advertisements */
    var elems = getElementsByTagAndClassName('a', 'subhelpactivator');
    for (var i = 0; i < elems.length; i++) {
        var n = elems[i];
        n.style.display = "block";
        var nodes = getElementsByTagAndClassName('p', 'subhelp', n.parentNode);
        if (nodes.length == 1) {
            e = connect(n, "onclick", function(e) {
                // lookup the correct node
                if (typeof(this.node.style.display) == "undefined" 
                    || this.node.style.display === null
                    || this.node.style.display == ''
                    || this.node.style.display == "none") {
                    // show node
                    this.node.style.display = "block";
                    // append a classname
                    this.obj.className += " subhelpactivated";
                } else {
                    this.node.style.display = "none";
                    this.obj.className = this.obj.className.replace(/ subhelpactivated/, "");
                }
                stopEvent(e);
            
            });
            e.node = nodes[0];
        }
    }
