/* Removes the dotted border around links - when clicked on */

/*test = function()
{
	var links = getElementsByTagName("a"); 
	for (var i = 0; i < links.length; i++) 
	{ 
		document.links[i].onfocus=blurLink; 
	}
}

function blurLink() 
{
	if (this.blur) 
	{
		this.blur(); 
	}
}

window.onload=test;*/

/* - Makes the drop down menu appear for IE6 --- */
/* -------- http://www.alistapart.com/articles/dropdowns ---------*/
startList = function() 
{
	if (document.all&&document.getElementById) 
	{
		navRoot = document.getElementById("global-nav");
		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;
