// JavaScript Document

// This JS sets the "arrow" above the navigation to point to the proper section
// The variable will be defined on each page

function setArrow(elem)
{
	
	//change the background position to show, change font color and make uppercase
	//by default the background position is loaded but at a 30px 30px position, therefore "hidden" from view
	try
	{
	document.getElementById(elem).style.backgroundPosition = "top center";
	document.getElementById(elem).childNodes[0].style.color = "#000";
	//document.getElementById(elem).childNodes[0].style.textTransform = "uppercase";
	}
	catch(e)
	{}
}
