// JavaScript Document
function onPage(strId)
{
	try
	{
		var color = "#FF9900";
		if (strId == "index" || strId == "services" || strId == "contact_us")
		{
			color = "#666666";
		}
		document.getElementById(strId).style.color = color;
		document.getElementById(strId).style.cursor = "default";
	}
	catch(er)
	{
		// nothing
	}
}
