function EffectOn (theElement)
{
	if (theElement.style)
	{
		theElement = theElement.style
	}
	if (theElement.background != "undefined")
	{
		theElement.background = "#ffffff";
	}
	if (theElement.borderColor != "undefined")
	{
		theElement.borderColor = "#2E4C67";
	}
	if (theElement.cursor != "undefined")
	{
		theElement.cursor = "hand";
	}
}
function EffectDown (theElement)
{
	if (theElement.style)
	{
		theElement = theElement.style
	}
	if (theElement.background != "undefined")
	{
		theElement.background = "#ffffff";
	}
	if (theElement.borderColor != "undefined")
	{
		theElement.borderColor = "#6AAF99";
	}
	if (theElement.cursor != "undefined")
	{
		theElement.cursor = "hand";
	}
}

function EffectOff (theElement)
{
	if (theElement.style)
	{
		theElement = theElement.style
	}
	if (theElement.background != "undefined")
	{
	theElement.background = "#B5D7CC";
	}
	if (theElement.borderColor != "undefined")
	{
	theElement.borderColor = "#B5D7CC";
	}
	if (theElement.cursor != "undefined")
	{
		theElement.cursor = "auto";
	}
}




