
function HighLightNavigateURL()
{
	var section = (document.location.pathname.split("/"))[1]; 
	var stringa = document.location.pathname; 
	if (stringa.indexOf("products") != -1 )  
	{ section = "products" 
	} 
	if (stringa.indexOf("company") != -1 )  
	{ section = "company" 
	} 
	if (stringa.indexOf("Our_Commitment") != -1 )  
	{ section = "Our_Commitment" 
	} 
	if (stringa.indexOf("news") != -1 )  
	{ 
	section = "news" 
	} 
	if (stringa.indexOf("careers") != -1 )  
	{ section = "careers" 
	}
	if (section != "products" && section != "careers" && section != "company" && section != "Our_Commitment" && section != "news" ) 
	{  section = "home"; 
	} 
	var linkObj = document.getElementById("tn_" + section); 
	linkObj.className = "tn_selected";

}


