// JavaScript Document

sfHover = function() {
				var sfParents = document.getElementsByTagName("UL");
				for (var i=0; i<sfParents.length; i++) {
					var sfEls = sfParents[i].getElementsByTagName("LI");
					for (var j=0; j<sfEls.length; j++) {
						sfEls[j].onmouseover=function() {
							this.className+=" sfhover";
						}
						sfEls[j].onmouseout=function() {
							this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
						}
					}
				}
				var sfDivs = document.getElementsByTagName("DIV");
				for (var j=0; j<sfDivs.length; j++) {
					sfDivs[j].onmouseover=function() {
							this.className+=" sfhover";
					}
					sfDivs[j].onmouseout=function() {
						this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
					}
				}
			}


             if (window.attachEvent) window.attachEvent("onload", sfHover);
