// JavaScript Document

//This function is used to turn control the menu bar mouse over highlights.
function HighlightMenuItem(id,strAction)
{
	if (strAction == "highlight")
	{
		document.getElementById(id).className = "Menu_Bar_Item_Highlighted";
	}
	else if (strAction == "highlightright")
	{
		document.getElementById(id).className = "Menu_Bar_Item_Highlighted_Right";
	}
	else if (strAction == "dehighlight")
	{
		document.getElementById(id).className = "Menu_Bar_Item";
	}
	else if (strAction == "dehighlightright")
	{
		document.getElementById(id).className = "Menu_Bar_Item_Right";
	}
}
