/* [nodename, id, name, navigationtext, href, isnavigation, childs[], templatename] */

function jdecode(s) {
    s = s.replace(/\+/g, "%20")
    return unescape(s);
}

var POS_NODENAME=0;
var POS_ID=1;
var POS_NAME=2;
var POS_NAVIGATIONTEXT=3;
var POS_HREF=4;
var POS_ISNAVIGATION=5;
var POS_CHILDS=6;
var POS_TEMPLATENAME=7;
var theSitetree=[ 
	['PAGE','4555',jdecode('HOME'),jdecode(''),'/4555.html','true',[],''],
	['PAGE','9693',jdecode('NEWS%2C+PRESS+%26+EVENTS'),jdecode(''),'/9693.html','true',[],''],
	['PAGE','4612',jdecode('About+us'),jdecode(''),'/4612/index.html','true',[ 
		['PAGE','7402',jdecode('Management+Team'),jdecode(''),'/4612/7402.html','true',[],'']
	],''],
	['PAGE','10916',jdecode('Customers'),jdecode(''),'/10916.html','true',[],''],
	['PAGE','4666',jdecode('Expert+Solutions'),jdecode(''),'/4666/index.html','true',[ 
		['PAGE','89805',jdecode('Business+Solutions'),jdecode(''),'/4666/89805.html','true',[],''],
		['PAGE','89778',jdecode('Integrated+Solutions'),jdecode(''),'/4666/89778.html','true',[],''],
		['PAGE','68936',jdecode('Professional+Services'),jdecode(''),'/4666/68936.html','true',[],''],
		['PAGE','69725',jdecode('Service+Support+Solutions'),jdecode(''),'/4666/69725.html','true',[],''],
		['PAGE','219113',jdecode('Logistics+Management'),jdecode(''),'/4666/219113.html','true',[],''],
		['PAGE','68478',jdecode('Products+%26+Technology'),jdecode(''),'/4666/68478.html','true',[],'']
	],''],
	['PAGE','8546',jdecode('International+Partners'),jdecode(''),'/8546.html','true',[],''],
	['PAGE','27277',jdecode('Territories'),jdecode(''),'/27277.html','true',[],''],
	['PAGE','4828',jdecode('Contact+us'),jdecode(''),'/4828/index.html','true',[ 
		['PAGE','4855',jdecode('Offices+'),jdecode(''),'/4828/4855.html','true',[],''],
		['PAGE','144381',jdecode('Office+Locations+%28Maps%29'),jdecode(''),'/4828/144381.html','true',[],'']
	],''],
	['PAGE','189679',jdecode('Careers'),jdecode(''),'/189679.html','true',[],''],
	['PAGE','177379',jdecode('Official+Auditors'),jdecode(''),'/177379.html','true',[],''],
	['PAGE','4639',jdecode('Legal+Notice'),jdecode(''),'/4639.html','true',[],''],
	['PAGE','174579',jdecode('Institution+Professional+Membership'),jdecode(''),'/174579.html','true',[],''],
	['PAGE','9925',jdecode('Information+Requests+'),jdecode(''),'/9925/index.html','true',[ 
		['PAGE','10674',jdecode('Information+Request+%28follow+up+page%29'),jdecode(''),'/9925/10674.html','false',[],'']
	],'']];
var siteelementCount=23;
theSitetree.topTemplateName='Stylus';
					                                                                    
theSitetree.getById = function(id, ar) {												
							if (typeof(ar) == 'undefined')                              
								ar = this;                                              
							for (var i=0; i < ar.length; i++) {                         
								if (ar[i][POS_ID] == id)                                
									return ar[i];                                       
								if (ar[i][POS_CHILDS].length > 0) {                     
									var result=this.getById(id, ar[i][POS_CHILDS]);     
									if (result != null)                                 
										return result;                                  
								}									                    
							}                                                           
							return null;                                                
					  };                                                                
					                                                                    
theSitetree.getParentById = function(id, ar) {											
						if (typeof(ar) == 'undefined')                              	
							ar = this;                                             		
						for (var i=0; i < ar.length; i++) {                        		
							for (var j = 0; j < ar[i][POS_CHILDS].length; j++) {   		
								if (ar[i][POS_CHILDS][j][POS_ID] == id) {          		
									// child found                                 		
									return ar[i];                                  		
								}                                                  		
								var result=this.getParentById(id, ar[i][POS_CHILDS]);   
								if (result != null)                                 	
									return result;                                  	
							}                                                       	
						}                                                           	
						return null;                                                	
					 }								                                    
					                                                                    
theSitetree.getName = function(id) {                                                    
						var elem = this.getById(id);                                    
						if (elem != null)                                               
							return elem[POS_NAME];                                      
						return null;	                                                
					  };			                                                    
theSitetree.getNavigationText = function(id) {                                          
						var elem = this.getById(id);                                    
						if (elem != null)                                               
							return elem[POS_NAVIGATIONTEXT];                            
						return null;	                                                
					  };			                                                    
					                                                                    
theSitetree.getHREF = function(id) {                                                    
						var elem = this.getById(id);                                    
						if (elem != null)                                               
							return elem[POS_HREF];                                      
						return null;	                                                
					  };			                                                    
					                                                                    
theSitetree.getIsNavigation = function(id) {                                            
						var elem = this.getById(id);                                    
						if (elem != null)                                               
							return elem[POS_ISNAVIGATION];                              
						return null;	                                                
					  };			                                                    
					                                                                    
theSitetree.getTemplateName = function(id, lastTemplateName, ar) {             		 
	                                                                                 
	if (typeof(lastTemplateName) == 'undefined')                                     
		lastTemplateName = this.topTemplateName;	                                 
	if (typeof(ar) == 'undefined')                                                   
		ar = this;                                                                   
		                                                                             
	for (var i=0; i < ar.length; i++) {                                              
		var actTemplateName = ar[i][POS_TEMPLATENAME];                               
		                                                                             
		if (actTemplateName == '')                                                   
			actTemplateName = lastTemplateName;		                                 
		                                                                             
		if (ar[i][POS_ID] == id) {                                			         
			return actTemplateName;                                                  
		}	                                                                         
		                                                                             
		if (ar[i][POS_CHILDS].length > 0) {                                          
			var result=this.getTemplateName(id, actTemplateName, ar[i][POS_CHILDS]); 
			if (result != null)                                                      
				return result;                                                       
		}									                                         
	}                                                                                
	return null;                                                                     
	};                                                                               
/* EOF */					                                                            
