// JavaScript Document
try{
	var getURL = document.URL;
	var getOL = document.getElementById("LinkList");
	var getLI = getOL.getElementsByTagName("li");		
	var anchorTag = "";
	var qString = getURL.search("#");
	
	if(qString==-1){
		qString=getURL;
	} else{
		qString = getURL.substring(0,qString);		
	}	
	for(var i=0; i<getLI.length; i++){	
		var getText = getLI[i].firstChild;						
		if(getText==qString){							
			getLI[i].className = "active";				
			break;			
		}
	}
}
catch (er){
	msg="There is some error on Javascript";
}

