/* [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','4466',jdecode('START+INNENWELTEN'),jdecode(''),'/4466.html','true',[],''],
	['PAGE','169701',jdecode('AKTUELLES-TERMINE-PREISE'),jdecode(''),'/169701.html','true',[],''],
	['PAGE','14701',jdecode('AUSBILDUNG+Psychotherapie+'),jdecode(''),'/14701/index.html','true',[ 
		['PAGE','165301',jdecode('Inhalte+%26+Kosten'),jdecode(''),'/14701/165301.html','true',[],''],
		['PAGE','204927',jdecode('Aktuelle+Kurstermine'),jdecode(''),'/14701/204927.html','true',[],''],
		['PAGE','225515',jdecode('Pr%FCfungsvorbereitung'),jdecode(''),'/14701/225515.html','true',[],''],
		['PAGE','204896',jdecode('Literaturempfehlung'),jdecode(''),'/14701/204896.html','true',[],''],
		['PAGE','220945',jdecode('AUSBILDUNG+Coaching'),jdecode(''),'/14701/220945.html','true',[],'']
	],''],
	['PAGE','213745',jdecode('AUSBILDUNG+Klangmassage'),jdecode(''),'/213745.html','true',[],''],
	['PAGE','220651',jdecode('AUSBILDUNG+%DCbungsleiterIn'),jdecode(''),'/220651.html','true',[],''],
	['PAGE','227557',jdecode('AUSBILDUNG+Hypnose'),jdecode(''),'/227557/index.html','true',[ 
		['PAGE','229126',jdecode('MindMachine+%2F+HemiSynch'),jdecode(''),'/227557/229126.html','true',[],'']
	],''],
	['PAGE','239511',jdecode('AUFSTELLUNGEN'),jdecode(''),'/239511.html','true',[],''],
	['PAGE','238273',jdecode('KLANGMASSAGE'),jdecode(''),'/238273.html','true',[],''],
	['PAGE','245237',jdecode('R.E.S.E.T.'),jdecode(''),'/245237.html','true',[],''],
	['PAGE','233714',jdecode('TRAUMARBEIT+%26+-ANALYSE'),jdecode(''),'/233714.html','true',[],''],
	['PAGE','215745',jdecode('WORKSHOPS-KURSE-SEMINARE'),jdecode(''),'/215745/index.html','true',[ 
		['PAGE','240689',jdecode('Auf+dem+%22L%F6sungsweg%22'),jdecode(''),'/215745/240689.html','true',[],''],
		['PAGE','245837',jdecode('Fantasiereisen+mit+Klang'),jdecode(''),'/215745/245837.html','true',[],''],
		['PAGE','226945',jdecode('K%F6rperarbeit+%26+Entspannung'),jdecode(''),'/215745/226945.html','true',[],''],
		['PAGE','237773',jdecode('kreativ-l%F6sungsfokussiertes+Malseminar'),jdecode(''),'/215745/237773.html','true',[],''],
		['PAGE','213045',jdecode('Therap.+Puppenspiel'),jdecode(''),'/215745/213045.html','true',[],''],
		['PAGE','221945',jdecode('Therap.+Steingestaltung'),jdecode(''),'/215745/221945.html','true',[],''],
		['PAGE','222945',jdecode('Seminar+Kartenlegen'),jdecode(''),'/215745/222945.html','true',[],'']
	],''],
	['PAGE','61102',jdecode('G%C4STEBUCH'),jdecode(''),'/61102/index.html','true',[ 
		['PAGE','61103',jdecode('G%E4stebuch-Eintr%E4ge'),jdecode(''),'/61102/61103.html','true',[],''],
		['PAGE','210246',jdecode('Fotogalerie'),jdecode(''),'/61102/210246.html','true',[],'']
	],''],
	['PAGE','209951',jdecode('NEWS%3A+Thema+Gesundheit'),jdecode(''),'/209951/index.html','true',[ 
		['PAGE','209908',jdecode('NEWS%3A+Thema+Familie'),jdecode(''),'/209951/209908.html','true',[],'']
	],''],
	['PAGE','184101',jdecode('LINKS+-+TIPPS+-+TESTS'),jdecode(''),'/184101/index.html','true',[ 
		['PAGE','203021',jdecode('LINKS+Krankheiten+A-Z'),jdecode(''),'/184101/203021.html','true',[],''],
		['PAGE','183832',jdecode('Krisenintervention'),jdecode(''),'/184101/183832.html','true',[],''],
		['PAGE','203052',jdecode('LINKS+Psychotherapien'),jdecode(''),'/184101/203052.html','true',[],''],
		['PAGE','169832',jdecode('LINKS+Psychologie-TESTS'),jdecode(''),'/184101/169832.html','true',[],'']
	],''],
	['PAGE','208256',jdecode('Humor+%26+Lachen'),jdecode(''),'/208256.html','true',[],''],
	['PAGE','175401',jdecode('Empfehlungen+%26+IMPRESSUM'),jdecode(''),'/175401/index.html','true',[ 
		['PAGE','183801',jdecode('Adressen+Saarland'),jdecode(''),'/175401/183801.html','true',[],'']
	],''],
	['PAGE','251038',jdecode('Ihr+Weg+zu+uns'),jdecode(''),'/251038.html','true',[],'']];
var siteelementCount=38;
theSitetree.topTemplateName='Inspiration';
					                                                                    
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 */					                                                            
