function EffectOn (theElement)
{
	if (theElement.style)
	{
		theElement = theElement.style
	}
	if (theElement.cursor != "undefined")
	{
		theElement.cursor = "pointer";
	}
	if (theElement.color != "undefined")
	{
		theElement.color = "#C0DCF8";
	}
}

function EffectOff (theElement)
{
	if (theElement.style)
	{
		theElement = theElement.style
	}
	if (theElement.cursor != "undefined")
	{
		theElement.cursor = "pointer";
	}
	if (theElement.color != "undefined")
	{
		theElement.color = "#ffffff";
	}
}
