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 = "#ffffff";
	}
}

function EffectOff (theElement)
{
	if (theElement.style)
	{
		theElement = theElement.style
	}
	if (theElement.background != "undefined")
	{
		theElement.background = "url(/i/bgNavOff.gif)";
	}
	if (theElement.cursor != "undefined")
	{
		theElement.cursor = "hand";
	}
	if (theElement.color != "undefined")
	{
		theElement.color = "#ffffff";
	}
}
function EffectOnSelected (theElement)
{
	if (theElement.style)
	{
		theElement = theElement.style
	}
	if (theElement.background != "undefined")
	{
		theElement.background = "url(/i/bgNavOverSelected.gif)";
	}
	if (theElement.cursor != "undefined")
	{
		theElement.cursor = "hand";
	}
	if (theElement.color != "undefined")
	{
		theElement.color = "#000000";
	}
}

function EffectOffSelected (theElement)
{
	if (theElement.style)
	{
		theElement = theElement.style
	}
	if (theElement.background != "undefined")
	{
		theElement.background = "url(/i/bgNavSelected.gif)";
	}
	if (theElement.cursor != "undefined")
	{
		theElement.cursor = "hand";
	}
	if (theElement.color != "undefined")
	{
		theElement.color = "#000000";
	}
}

function EffectOnDealer (theElement)
{
	if (theElement.style)
	{
		theElement = theElement.style
	}
	if (theElement.background != "undefined")
	{
		theElement.background = "url(/i/bgNavDealerOver.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/bgNavDealerOff.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/bgNavDealerLogoutOver.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";
	}
}

