
// JScript File
var sPath = window.location.pathname;
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
var id = sPath.split("/");
var tempid=id.join("");
var finstr = tempid.split(".");
if(finstr.length != 0)
{
	if(finstr[0]=="")
	{
		var vb=document.getElementById("index");
		vb.style.backgroundColor='#d7dee0';
		vb.href="#";
		vb.style.cursor="none";
	}
	else if(document.getElementById(finstr[0]))
	{
		var vb=document.getElementById(finstr[0]);
		vb.style.backgroundColor='#000000';
		vb.style.color='#F80808';
		vb.href="#";
		vb.style.cursor="none";
	}
}

