/* [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','4436',jdecode('Welcome'),jdecode(''),'/4436.html','true',[],''],
	['PAGE','36510',jdecode('Who+are+we%3F'),jdecode(''),'/36510/index.html','true',[ 
		['PAGE','36879',jdecode('Meet+our+team'),jdecode(''),'/36510/36879.html','true',[],'']
	],''],
	['PAGE','16126',jdecode('How+Can+We+Help%3F'),jdecode(''),'/16126/index.html','true',[ 
		['PAGE','39101',jdecode('Know+your+purpose'),jdecode(''),'/16126/39101.html','true',[],''],
		['PAGE','36541',jdecode('Achieve+your+goals'),jdecode(''),'/16126/36541.html','true',[],''],
		['PAGE','41806',jdecode('Your+ideal+partner'),jdecode(''),'/16126/41806.html','true',[],''],
		['PAGE','16153',jdecode('Be+a+natural+leader'),jdecode(''),'/16126/16153.html','true',[],''],
		['PAGE','36572',jdecode('Build+your+business'),jdecode(''),'/16126/36572.html','true',[],'']
	],''],
	['PAGE','37976',jdecode('Blog+and+Events'),jdecode(''),'/37976/index.html','true',[ 
		['PAGE','43004',jdecode('lead+...+naturally+blog'),jdecode(''),'/37976/43004.html','true',[],''],
		['PAGE','37268',jdecode('Lead+Generation'),jdecode(''),'/37976/37268.html','true',[],''],
		['PAGE','39601',jdecode('Write+Now%21'),jdecode(''),'/37976/39601.html','true',[],''],
		['PAGE','38192',jdecode('Confident+Networking'),jdecode(''),'/37976/38192.html','true',[],''],
		['PAGE','38161',jdecode('Difficult+People'),jdecode(''),'/37976/38161.html','true',[],''],
		['PAGE','38130',jdecode('Finding+Your+Direction'),jdecode(''),'/37976/38130.html','true',[],''],
		['PAGE','41201',jdecode('The+Natural+Leader'),jdecode(''),'/37976/41201.html','true',[],''],
		['PAGE','40601',jdecode('The+Female+Leader'),jdecode(''),'/37976/40601.html','true',[],'']
	],''],
	['PAGE','16180',jdecode('Our+Clients+Say+...'),jdecode(''),'/16180.html','true',[],''],
	['PAGE','16234',jdecode('Contact+Us'),jdecode(''),'/16234/index.html','true',[ 
		['PAGE','30316',jdecode('Contact+%28follow+up+page%29'),jdecode(''),'/16234/30316.html','false',[],'']
	],'']];
var siteelementCount=21;
theSitetree.topTemplateName='Filofax';
					                                                                    
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 */					                                                            
