function getLeftMenu(url){
		
		if(url.match("/*downloads\/*/")!=null || url.match("/*customer\/*/")!=null || url.match("/*news\/*/")!=null || url.match(/search.jsp/)!=null){
			return "";
		}
		
		if(url.match("/*ba\/*/")!=null){
			return "LeftMenus/baOverview.jsp";
		}
		if(url.match("/*blogs\/*/")!=null){
			return "LeftMenus/blogs.jsp";
		}
		
		if(url.match("/*about\/*/")!=null){
			return "LeftMenus/companyInformation.jsp";
		}
		
		if(url.match("/*oss\/*/")!=null){
			
			if(url.match(/overviewOss.jsp/)!=null){
				return "LeftMenus/ossOverview.jsp";
			}
			if(url.match(/customerServiceManagement.jsp/)!=null || url.match(/selfCare.jsp/)!=null || url.match(/orderEntry.jsp/)!=null || url.match(/customerTroubleTicketing.jsp/)!=null){
				
				return "LeftMenus/customerInteraction.jsp";	
			}
			if(url.match(/catalog.jsp/)!=null || url.match(/orderManagement.jsp/)!=null || url.match(/activation.jsp/)!=null || url.match(/inventory.jsp/)!=null || url.match(/aaaServer.jsp/)!=null){
				return "LeftMenus/fulfillment.jsp";
			}
			if(url.match(/rating.jsp/)!=null || url.match(/billing.jsp/)!=null || url.match(/partnerSettlement.jsp/)!=null || url.match(/accountReceivable.jsp/)!=null || url.match(/creditControl.jsp/)!=null || url.match(/mediation.jsp/)!=null || url.match(/balanceManagement.jsp/)!=null || url.match(/voucher.jsp/)!=null){
				return "LeftMenus/revenueManagement.jsp";
			}
			if(url.match(/reporting.jsp/)!=null || url.match(/churn.jsp/)!=null || url.match(/loyalty.jsp/)!=null || url.match(/fraud.jsp/)!=null){
				return "LeftMenus/reporting.jsp";
			}
		}
		return "";
	}


