function activateSection(){
	
	//window.location ="/" + window.location;
	var wl=window.location+'';
	var element='';
	var aelement='';
	
	if (wl.indexOf('/aboutus/') > -1){
		element='About';
		aelement='aAbout';
	}
	else if (wl.indexOf('/services/') > -1){
		element='Services';
		aelement='aServices';
	}
	else if (wl.indexOf('/partner/') > -1){
		element='Partner';
		aelement='aPartner';
	}
	else if (wl.indexOf('/resources/') > -1){
		element='Resources';
		aelement='aResources';
	}
	else if (wl.indexOf('/login/') > -1){
		element='LogIn';
		aelement='aLogIn';
	}
	else if (wl.indexOf('/contactus/') > -1){
		element='ContactUs';
		aelement='aContactUs';
	}
	else if (wl.indexOf('/global/') > -1){
		element='';
		aelement='';
	}
	else {
		element='Home';
		aelement='aHome';
	}
	
	if (element!='' && aelement!='') {
		var obj=document.getElementById(element);
		var aobj=document.getElementById(aelement);
		obj.className='active';
		aobj.className='active';
	}
}