/*
	Ecliptic Technologies, Inc.
	Copyright 2004-2005 - All Rights Reserved, World Wide
	Unauthorized use or reproduction of this product is strictly prohibited by law.
	Web: http://www.ecliptictech.com
	Email: sales@ecliptictech.com
	
	Name: Global JavaScript File
	Description: This JavaScript file contains all the JavaScript that should be 
		executed accross the entire application.
*/

var sfHover = function() {
	if(document.getElementById("menu") != null) {
		var sfEls = document.getElementById("menu").getElementsByTagName("LI");
		for (var i=0; i<sfEls.length; i++) {
			if(sfEls[i] != null) {
				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);


