			// Based on the HTML Dog (http://www.htmldog.com) SuckerFish Hover code 
			footNoteHover = function() {
				var footNoteEls = document.getElementsByTagName("SMALL");
				for (var i=0; i<footNoteEls.length; i++) {
					footNoteEls[i].onmouseover=function() {
						this.className+=" footNotehover";
					}
					footNoteEls[i].onmouseout=function() {
						this.className=this.className.replace(new RegExp(" footNotehover\\b"), "");
					}
				}
			}
			if (window.attachEvent) window.attachEvent("onload", footNoteHover);