///////////////////////////////////////////
//
// brandonindustries.com.au : common.js
// Author: aCore Solutions
// Date created: Wednesday 08 March 2006
// Date modified: Tuesday 14 March 2006
//
// Purpose: creates drop down top navigation
//
// All material contained within these files and other files that are
// located on the aCore Solutions server are COPYRIGHT (C) 2006
//
// No images, text, HTML or any other type of medium may be 
// electronically reproduced under any circumstances without prior 
// permission of aCore Solutions.  Any logos depicting any entity other
// than aCore Solutions is the property of their respective owners.
// 
// See the disclaimer page at www.acore.com.au for more information.
//
///////////////////////////////////////////


 
 sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
			this.style.zIndex=200; //this line added to force flyout to be above relatively positioned stuff in IE
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);



