try{
	for(i=0; i<document.documentElement.childNodes.length; i++) 
	{
		if (document.documentElement.childNodes[i].nodeName == 'BODY') 
		{
			var bodyID = document.documentElement.childNodes[i].id;
		}
	}
	idLength = bodyID.length;
	dashPos = bodyID.indexOf('-');
	firstSection = bodyID.substring(0,dashPos);
	secondSection = bodyID.substring(dashPos+1,idLength);
	
	var thirdSection = "";
	if (!(secondSection.indexOf('-')==-1))
	{
		dashPos = bodyID.indexOf('-');
		temp = secondSection.substring(0,dashPos);
		thirdSection = secondSection.substring(dashPos+1,idLength);	
		secondSection = temp;
	}
	
	if (thirdSection == ""){}
	else
	{
		document.getElementById(thirdSection).style.color="#f2b51c";
	}

	if (firstSection.substring(0,2)=="lm") /** Left Menu **/
	{	
		firstSectionUL = firstSection + "UL";
		document.getElementById(firstSection).style.color="#f2b51c";
		document.getElementById(firstSectionUL).style.display="block";
		document.getElementById(secondSection).style.color="#f2b51c";
		document.getElementById(secondSection).style.fontWeight="bold";
	}

	if (firstSection.substring(0,2)=="tl") /** Top Link **/
	{
		document.getElementById(firstSection).style.color="#f2b51c";
	}
	
}
catch (err)
{
	/*alert(err);*/
}
