function startList()
{
	if (document.all&&document.getElementById) 
	{
		navRoot = document.getElementById("global-navigation");
		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", "");
				} 
			} 
		} 
	} 
}

function startGate()
{
	if (document.all&&document.getElementById) 
	{
		navRoot = document.getElementById("global-destinations");
		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", "");
				} 
			} 
		} 
	} 
}


// added by Kelli McNichols - 20090515
// part of the site's sdmenu; was causing a conflict - RIM

var myMenu;
function sideMenu() {
myMenu = new SDMenu("my_menu");

myMenu.speed = 10;                     // Menu sliding speed (1 - 5 recommended)
myMenu.remember = false;               // Store menu states (expanded or collapsed) in cookie and restore later
myMenu.oneSmOnly = true;             // One expanded submenu at a time
myMenu.markCurrent = true;            // Mark current link / page (link.href == location.href)

myMenu.init();
// var firstSubmenu = myMenu.submenus[1];
};
