// tv-flyoutmenu...adapted from sons of suckerfish by Larry Groebe for Odyssey Communications Group
// v1.0  11/29/2004

sfHover = function() {
	var sfFlyouts = document.getElementsByName("flyoutmenu");
	for (x=0; x<sfFlyouts.length; x++) {
		var sfEls = sfFlyouts(x).getElementsByTagName("LI");
		for (var i=0; i<sfEls.length; i++) {
			sfEls[i].onmouseover=function() {
				this.className+=" sfhover";
				}
			sfEls[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
				}
			}
		}
	}

if (window.attachEvent) window.attachEvent("onload", sfHover);
