function oColor(m_sOver,m_sNormal) 
{
	this.sOver = m_sOver;
	this.sNormal = m_sNormal;
}

stNav1 = new oColor("566FC5","0E2B8D");
stNav2 = new oColor("566FC5","0E2B8D");

function getObject(sObject)
{
	if (stBrowser.sType == "DOM")
	{
		return document.getElementById(sObject);
	}
	else
	{
		return eval("document.all." + sObject);
	}
}

function setLoc(loc)
{
	document.location.href=loc;
}


function setCursor(obj)
{

	if (stBrowser.sBrowser == "NS")
	{
		obj.style.cursor  = "pointer";
	}
	else
	{
		obj.style.cursor  = "hand";
	}
}

function setCursorNormal(obj)
{
	if (stBrowser.sBrowser == "NS")
	{
		obj.style.cursor  = "";
	}
	else
	{
		obj.style.cursor  = "";
	}
}


function setClass(obj,x)
{

	if (stBrowser.sType == "IELAYER" || stBrowser.sType == "DOM")
	{

		if (obj.className.indexOf("nav1") == 0)
		{
			stNav = stNav1;
		}
		else
		{
			stNav = stNav2;
		}

		if (x == 1)
		{
			obj.style.backgroundColor = stNav.sOver;
			setCursor(obj);
		}
		else
		{
			obj.style.backgroundColor = stNav.sNormal;
		}

	}
	
}

