var menuList  = new Array(); //Create an array of all links in section

//ID, Name, path, target, newWindow ,level, parentID

var queryString=document.location.search;

//if(queryString.length > 0 ){

  var prPath = document.location.pathname;
  
  queryString = queryString.substr(1);
  var queryVar = queryString.split("=");

  var menuString, custString;
	
  //alert("menuString: " + menuString + "\ncustString: " + custString);
 // Conditional statement checking if page have a "pr" argument indicating
 // 
 // Example www.ups-scs.com/about/press.html?pr=true 
 
		if(queryVar[0]== "pr"){
			custString="6|Press Release|" + prPath + "||0|3|5";

	  custString="6|Current Release|" + prPath + "||0|3|5";  	
	  menuList[0]="1|About Us|/about/index.html||0|1|0";
	  menuList[1]="2|Corporate Fact Sheet|/about/factsheet.html||0|2|1";
	  menuList[2]="3|Small Business Backgrounder|/about/smallbusiness.html||0|2|1";
	  menuList[3]="4|Cash Flow Backgrounder|/about/cashflowbackgrounder.html||0|2|1";
	  menuList[4]="5|Press Room|/about/press.html||0|2|1";
	  menuList[5]=custString;
	  menuList[6]="7|News|/about/news.html||0|2|1";

  
	/*	}  else if (queryVar[0] == "art") {

	  custString="6|Current Article|" + prPath + "||0|3|5";
	  menuList[0]="1|About Us|/about/index.html||0|1|0";
	  menuList[1]="2|Corporate Fact Sheet|/about/factsheet.html||0|2|1";
	  menuList[2]="3|Small Business Backgrounder|/about/smallbusiness.html||0|2|1";
	  menuList[3]="4|Cash Flow Backgrounder|/about/cashflowbackgrounder.html||0|2|1";
	  menuList[4]="5|Press Room|/about/press.html||0|2|1";
	  menuList[5]=custString;
	*/
		} else {


	  menuList[0]="1|About Us|/about/index.html||0|1|0";
	  menuList[1]="2|Corporate Fact Sheet|/about/factsheet.html||0|2|1";
	  menuList[2]="3|Small Business Backgrounder|/about/smallbusiness.html||0|2|1";
	  menuList[3]="4|Cash Flow Backgrounder|/about/cashflowbackgrounder.html||0|2|1";
	  menuList[4]="5|Press Room|/about/press.html||0|2|1";
	  menuList[5]="6|News|/about/news.html||0|2|1";
		}
  
  
  