function initHeader()
{
	// fix the header buttons so that they're clickable,
	// not just the link text
    try
    {
        var hldiv = document.getElementById("cat_hl_84669");
        if(hldiv != null)
        {
            for(var i=0;i<hldiv.childNodes[0].childNodes.length;i++)
            {
                var li = hldiv.childNodes[0].childNodes[i];
                if(li.tagName == "LI")
                {
                    li.childNodes[0].childNodes[1].onclick = 
                        function() {
                            window.location = this.childNodes[0].href;
                        };
                }
            }
        }
    }
    catch(ex)
    {
    }
}


