/// <summary>
        /// Returns an HTMLElementDictionary containing references to all
        /// "a" tags in the current document where the element class is
        /// wlwStaticLink
        /// </summary>
        public HTMLElementDictionary getStaticLinksDictionary()
        {
            var output = new HTMLElementDictionary();

            foreach (IHTMLElement element in _anchorCollection)
            {
                if (element.className == AnchorClass.wlwStaticLink.ToString())
                {
                    output.Add(element.id, element);
                }
            }

            return output;
        }