function sideNav(act,tab,link)
{
	try
	{
		if (act == "over")
		{
			tab.style.backgroundColor = "#00459e";
			//tab.style.backgroundColor = "#8f9570";
		}
		else
		{
			tab.style.backgroundColor = "#ffffff";
		}
	}
	catch(e)
	{
		var eDescription = e.description;
	}
}

function showHiddenAd(oAd,oAdDesc)
{
	try
	{
		var dTop = 80 + parseInt(window.event.y);
		switch(window.event.type)
		{
			case "mouseover":
				oAdDesc.style.left = window.event.x + "px";
				oAdDesc.style.top = dTop.toString() + "px";
				oAdDesc.style.display = "";
				break;
			case "mouseout":
				oAdDesc.style.display = "none";
				break;
		}
	}
	catch(e)
	{
		var eMessage = e.description;
	}
}