/* 
from ALA's Suckerfish Dropdowns: http://www.alistapart.com/articles/dropdowns/

startList = function() {
    if (document.all && document.getElementById) {
        navRoot = document.getElementById("nav_1");
        for (i = 0; i < navRoot.childNodes.length; i++) {
            node = navRoot.childNodes[i];
            if (node.nodeName == "li") {
                node.onmouseover = function() {
                    this.className += " over";
                }
                node.onmouseout = function() {
                    this.className = this.className.replace(" over", "");
                }
            }
        }
    }
}
window.onload = startList;
*/

/* This is for the TCO tool links */
function calcwindow1()
{
window.open('https://roianalyst.alinean.com/ent_03/AutoLogin.do?d=512627967999771991', 'Cypress_Communications', 'top=5,left=10,toolbar=no,menubar=no,directories=no,width=1250,height=950,resizable=yes,scrollbars=auto');
}

/* This is for the hover events 
sfHover = function() {
	var sfEls = document.getElementById("nav_1").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);
*/