<!--

sfHover = function() {
	// check for a nav
	if( document.getElementById("nav") ){
		var sfEls = document.getElementById("nav").getElementsByTagName("LI");
		for (var i=0; i<sfEls.length; i++) {
			sfEls[i].onmouseover=function() {
				if( this.firstChild.nextSibling && this.firstChild.nextSibling.nextSibling ){
					var elements = this.firstChild.nextSibling.nextSibling.getElementsByTagName("LI");
					if( elements.length>0 ){
						this.className+=" sfhover";
					}
				}
			}
			sfEls[i].onmouseout=function() {
				if( this.firstChild.nextSibling && this.firstChild.nextSibling.nextSibling ){
					this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
				}
			}
		}
	}
}
	
if (window.attachEvent) window.attachEvent("onload", sfHover);


//-->





<!--

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}



//-->