// JScript File
    //寻找节点并将none转为block
	var sPath = location.href.split("/")[location.href.split("/").length - 1];
	var oLinks = document.getElementsByTagName('a');
	if( sPath != "" && sPath.indexOf(".jsp") > -1 )
	{
		for( i = 0; i < oLinks.length; i++ )
		{
			if( sPath.indexOf( oLinks[i].href.split("/")[oLinks[i].href.split("/").length - 1] ) > -1 && oLinks[i].href.indexOf("#") < 0 && oLinks[i].getAttribute("type") == "left" )
			{
				document.getElementById(oLinks[i].getAttribute("alt")).className = 'active';
				if( oLinks[i].getAttribute("for"))
				{
					document.getElementById(oLinks[i].getAttribute("for")).style.display = 'block';
				}
			}
		}
	}