function dynamicHeader(){
	var path = window.location.href;
	returnString = "";
 
	if (path.match("/products/")) returnString = "PRODUCTS"; 
	if (path.match("/people/")) returnString = "PEOPLE";
	if (path.match("/search/")) returnString = "SEARCH";
	if (path.match("/careers/")) returnString = "CAREERS";
	if (path.match("/services/")) returnString = "SERVICES";
	if (path.match("sitemap")) returnString = "SITEMAP";
	if (path.match("/terms/")){
	  if (path.match("privacy")){
	    returnString = "PRIVACY POLICY";
		}else{
		  returnString = "TERMS AND CONDITIONS";
		}
	 }
	
	if (path.match("/resources/")) returnString = "CUSTOMER RESOURCES";
	if (path.match("/n-pay/")) returnString = "CUSTOMER RESOURCES";
	if (path.match("/cgi-bin/")) returnString = "CUSTOMER RESOURCES";
	if (path.match("/about/")) returnString = "ABOUT GFC";
	if (path.match("/news/")){
		if (path.match("press_releases")){
   			returnString = "PRESS RELEASES";
		}else{
			returnString = "NEWS AND EVENTS";	
		}
	}
	if (path.match("/contact/")){
		if (path.match("request_information")){
			returnString = "REQUEST INFORMATION";
		}else{
			returnString = "CONTACT US";
		}
	}
	return returnString;
}
