/* [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','1110',jdecode('Minilernkreis+'),jdecode(''),'/1110/index.html','true',[ 
		['PAGE','21278',jdecode('Die+Regionalleitung'),jdecode(''),'/1110/21278.html','true',[],''],
		['PAGE','21305',jdecode('Historie+und+Angebot'),jdecode(''),'/1110/21305.html','true',[],'']
	],''],
	['PAGE','24901',jdecode('Das+Konzept'),jdecode(''),'/24901.html','true',[],''],
	['PAGE','21386',jdecode('f%FCr+Eltern'),jdecode(''),'/21386.html','true',[],''],
	['PAGE','21413',jdecode('f%FCr+Sch%FCler'),jdecode(''),'/21413.html','true',[],''],
	['PAGE','21359',jdecode('f%FCr+Lehrer'),jdecode(''),'/21359.html','true',[],''],
	['PAGE','21440',jdecode('Aktuelles'),jdecode(''),'/21440/index.html','true',[ 
		['PAGE','21467',jdecode('Neuigkeiten'),jdecode(''),'/21440/21467.html','true',[],''],
		['PAGE','32401',jdecode('weitere+Termine'),jdecode(''),'/21440/32401.html','true',[],'']
	],''],
	['PAGE','21494',jdecode('Informationstermine+vor+Ort'),jdecode(''),'/21494.html','true',[],''],
	['PAGE','38028',jdecode('Informationstermine+vor+Ort+Teil+2'),jdecode(''),'/38028.html','true',[],''],
	['PAGE','36919',jdecode('Aktuelle+Ferienkurse+und+Workshops'),jdecode(''),'/36919.html','true',[],''],
	['PAGE','34409',jdecode('Intensivkurse'),jdecode(''),'/34409/index.html','true',[ 
		['PAGE','34501',jdecode('Ferienkurse+%28Folgeseite%29'),jdecode(''),'/34409/34501.html','false',[],'']
	],''],
	['PAGE','35301',jdecode('Workshop+%22Lernen%22'),jdecode(''),'/35301.html','true',[],''],
	['PAGE','21521',jdecode('Jobs'),jdecode(''),'/21521.html','true',[],''],
	['PAGE','28602',jdecode('G%E4stebuch'),jdecode(''),'/28602/index.html','true',[ 
		['PAGE','28603',jdecode('Eintr%E4ge'),jdecode(''),'/28602/28603.html','true',[],'']
	],''],
	['PAGE','1347',jdecode('Kontakt'),jdecode(''),'/1347/index.html','true',[ 
		['PAGE','3024',jdecode('Kontakt'),jdecode(''),'/1347/3024.html','false',[],'']
	],''],
	['PAGE','32980',jdecode('N%FCtzliches+und+Wissenswertes'),jdecode(''),'/32980/index.html','true',[ 
		['PAGE','33417',jdecode('Familie'),jdecode(''),'/32980/33417.html','true',[],''],
		['PAGE','38170',jdecode('Gesundheit'),jdecode(''),'/32980/38170.html','true',[],''],
		['PAGE','32945',jdecode('Wetter'),jdecode(''),'/32980/32945.html','true',[],''],
		['PAGE','32830',jdecode('Minidolmetscher'),jdecode(''),'/32980/32830.html','true',[],''],
		['PAGE','32602',jdecode('Langenscheidt+Sprachkalender'),jdecode(''),'/32980/32602.html','true',[],''],
		['PAGE','33364',jdecode('Reiseinformationen'),jdecode(''),'/32980/33364.html','true',[],''],
		['PAGE','33602',jdecode('Supermind'),jdecode(''),'/32980/33602.html','true',[],'']
	],''],
	['PAGE','34601',jdecode('Nachhilfe'),jdecode(''),'/34601/index.html','true',[ 
		['PAGE','34649',jdecode('Nachhilfe+%28Folgeseite%29'),jdecode(''),'/34601/34649.html','false',[],'']
	],''],
	['PAGE','35002',jdecode('Fotoalbum'),jdecode(''),'/35002.html','true',[],''],
	['PAGE','35401',jdecode('Impressum'),jdecode(''),'/35401.html','true',[],''],
	['PAGE','38725',jdecode('Datenschutzerkl%E4rung'),jdecode(''),'/38725.html','true',[],'']];
var siteelementCount=34;
theSitetree.topTemplateName='Alpha';
					                                                                    
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 */					                                                            
