




var glbHomeURLinFullList="/asa/en/Asia_English.html";
function buildTree() {
	
	
	
	

	
	var root = new TreeNode(null,"Home", "/asa/en/Asia_English.html","active",0);  

	var tempNode1, tempNode2, tempNode3, tempNode4, tempNode5;

	tempNode1 = new TreeNode(root, "Home" , "/asa/en/Asia_English.html","active",1);
  tempNode2 = new TreeNode(tempNode1, "Emergency Contacts - Lost/Stolen Card" , "/asa/en/emergencyservices/index.html","active",2);
  tempNode2 = new TreeNode(tempNode1, "Find an ATM Near You" , "/asa/en/atmlocations/index.html","active",2);
    tempNode3 = new TreeNode(tempNode2, "Tips for Safe ATM Usage" , "/asa/en/atmlocations/atm_safetytips.html","active",3);
    tempNode3 = new TreeNode(tempNode2, "Frequently Asked Questions" , "/asa/en/atmlocations/atm_faqs.html","active",3);


	
	return (root);
}


