// JScript File

var sPath = window.location.pathname;
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
var id = sPath.split("/");
var finstr = id[1].split(".");
if(finstr.length != 0)
{
if(sPage != "oursolution-consistent.html" && sPage != "oursolution-flexible.html" && sPage != "oursolution-management.html" && sPage != "oursolution-reporting.html")
	{
		var vb=document.getElementById(finstr[0]);
		vb.style.color="#0e4aa5";
		vb.href="#";
		vb.style.cursor="none";	
	}
	else
	{
		var vb=document.getElementById("haz-oursolution");
		vb.style.color="#0e4aa5";
		vb.href="haz-oursolution.html";
		var vb1 = document.getElementById(finstr[0]);
		vb1.style.backgroundImage = "url(./images/RIght-tag-Selected.png)";
		var vb2 = document.getElementById(finstr[0] + "1");
		vb2.style.color="#ffffff";
		vb2.href="#";
		vb2.style.cursor="none";	
	}
}
else
{
		var vb=document.getElementById("index");
		vb.style.color="#0e4aa5";
		vb.href="#";
		vb.style.cursor="none";	
}
