// JavaScript Document

function highlightItem(element, active)
{
	if (active)
	{
		element.className = "navigationItem hover";
		//element.style.backgroundColor = "#8edd6d";
	}
	else
	{
		element.className = "navigationItem";
		//element.style.backgroundColor = "#026802";
	}
}

function mouseOver(tool)
{
	tool.className = "buttonHover";
	//tool.style.border = "1px #AAAAAA solid";
	//tool.style.backgroundColor = "#FFFFFF";
}

function mouseOut(tool)
{
	tool.className = "button";
	//tool.style.border  = "1px #EEEEEE solid";
	//tool.style.backgroundColor  = "";
}

function gotoUrl(url)
{
	window.location = url;
}
