
// ========================================================================
//  PULL-OUT MENU
// ========================================================================

	// Son of Suckerfish Menu
	// http://www.htmldog.com/articles/suckerfish/
	// Modified by DBG Technologies
	
	// Modified - className is now += "sfhover", rather than += " sfhover"
	// to facilitate handling of "always on" parent class
	
	sfHover = function() {
	  
		var nav = document.getElementById("navigation");
		if(!nav) { return }
		
		var sfEls = nav.getElementsByTagName("li");
		
		for (var i=0; i < sfEls.length; i++) {
			sfEls[i].onmouseover=function() {
				this.className+="sfhover";//CHANGE: leading space removed
			}
			sfEls[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp("sfhover\\b"), "");//CHANGE: leading space removed
			}
		}
	}
	
	if (window.attachEvent) window.attachEvent("onload", sfHover);

// -----------------------------------------------------------------------

