function EffectOn (theElement)
{
	if (theElement.style)
	{
		theElement = theElement.style
	}
	if (theElement.background != "undefined")
	{
		theElement.background = "url(/i/bgNavOver.gif)";
	}
	if (theElement.cursor != "undefined")
	{
		theElement.cursor = "hand";
	}
	if (theElement.color != "undefined")
	{
		theElement.color = "#1B8AE0";
	}
}

function EffectOff (theElement)
{
	if (theElement.style)
	{
		theElement = theElement.style
	}
	if (theElement.background != "undefined")
	{
		theElement.background = "url(/i/bgNav.gif)";
	}
	if (theElement.cursor != "undefined")
	{
		theElement.cursor = "hand";
	}
	if (theElement.color != "undefined")
	{
		theElement.color = "#232021";
	}
}

function EffectOnDealer (theElement)
{
	if (theElement.style)
	{
		theElement = theElement.style
	}
	if (theElement.background != "undefined")
	{
		theElement.background = "url(/i/bgNavOverDealer.gif)";
	}
	if (theElement.cursor != "undefined")
	{
		theElement.cursor = "hand";
	}
	if (theElement.color != "undefined")
	{
		theElement.color = "#FF6600";
	}
}

function EffectOffDealer (theElement)
{
	if (theElement.style)
	{
		theElement = theElement.style
	}
	if (theElement.background != "undefined")
	{
		theElement.background = "url(/i/bgNavDealer.gif)";
	}
	if (theElement.cursor != "undefined")
	{
		theElement.cursor = "hand";
	}
	if (theElement.color != "undefined")
	{
		theElement.color = "#232021";
	}
}
function EffectOnDealerLogout (theElement)
{
	if (theElement.style)
	{
		theElement = theElement.style
	}
	if (theElement.background != "undefined")
	{
		theElement.background = "url(/i/bgNavOverDealerLogout.gif)";
	}
	if (theElement.cursor != "undefined")
	{
		theElement.cursor = "hand";
	}
	if (theElement.color != "undefined")
	{
		theElement.color = "#C81919";
	}
}

function EffectOffDealerLogout (theElement)
{
	if (theElement.style)
	{
		theElement = theElement.style
	}
	if (theElement.background != "undefined")
	{
		theElement.background = "url(/i/bgNavDealerLogout.gif)";
	}
	if (theElement.cursor != "undefined")
	{
		theElement.cursor = "hand";
	}
	if (theElement.color != "undefined")
	{
		theElement.color = "#232021";
	}
}

