/* [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','4481',jdecode('Aufrichtung'),jdecode(''),'/4481.html','true',[],''],
	['PAGE','18855',jdecode('Wer+bin+ich'),jdecode(''),'/18855/index.html','true',[ 
		['PAGE','18882',jdecode('Die+Familie'),jdecode(''),'/18855/18882.html','true',[],'']
	],''],
	['PAGE','18963',jdecode('Mein+Bechti'),jdecode(''),'/18963.html','true',[],''],
	['PAGE','18990',jdecode('Die+Aufrichtungsoperation'),jdecode(''),'/18990.html','true',[],''],
	['PAGE','48748',jdecode('Album+1%3A+Aufrichtungsop'),jdecode(''),'/48748.html','true',[],''],
	['PAGE','49554',jdecode('Album+2%3A++Nach+der+OP'),jdecode(''),'/49554.html','true',[],''],
	['PAGE','50111',jdecode('Album+3%3A+Vorher+%2F+Nachher'),jdecode(''),'/50111.html','true',[],''],
	['PAGE','50971',jdecode('Was+man+noch+so+braucht'),jdecode(''),'/50971.html','true',[],''],
	['PAGE','51172',jdecode('Album+4%3A+Hilfsmittel'),jdecode(''),'/51172.html','true',[],''],
	['PAGE','68459',jdecode('Tagebuch+2005-2007'),jdecode(''),'/68459/index.html','true',[ 
		['PAGE','52771',jdecode('2005.+Im+Jahr+der+Op.'),jdecode(''),'/68459/52771.html','true',[],''],
		['PAGE','68428',jdecode('2006.+Das+Jahr+nach+der+OP'),jdecode(''),'/68459/68428.html','true',[],''],
		['PAGE','78046',jdecode('2007+Alles+normalisiert+sich'),jdecode(''),'/68459/78046.html','true',[],''],
		['PAGE','53477',jdecode('Andr%E9'),jdecode(''),'/68459/53477.html','true',[],''],
		['PAGE','52071',jdecode('Anders+%28er%29leben'),jdecode(''),'/68459/52071.html','true',[],''],
		['PAGE','48650',jdecode('Res%FCmee'),jdecode(''),'/68459/48650.html','true',[],'']
	],''],
	['PAGE','18732',jdecode('G%E4stebuch'),jdecode(''),'/18732/index.html','true',[ 
		['PAGE','18733',jdecode('Eintr%E4ge'),jdecode(''),'/18732/18733.html','true',[],'']
	],''],
	['PAGE','9254',jdecode('Direktkontakt'),jdecode(''),'/9254/index.html','true',[ 
		['PAGE','49672',jdecode('Kontakt+%28Folgeseite%29'),jdecode(''),'/9254/49672.html','false',[],'']
	],''],
	['PAGE','9281',jdecode('Ich+zeigs+Euch+%28Links%29'),jdecode(''),'/9281.html','true',[],''],
	['PAGE','56725',jdecode('microh%26%23x27%3Bs+Weblog'),jdecode(''),'/56725.html','true',[],''],
	['PAGE','60524',jdecode('MyMeerbusch'),jdecode(''),'/60524/index.html','true',[ 
		['PAGE','60871',jdecode('MyMeerbusch+Maps'),jdecode(''),'/60524/60871.html','true',[],''],
		['PAGE','60902',jdecode('MyMeerbusch+Statistics'),jdecode(''),'/60524/60902.html','true',[],''],
		['PAGE','60933',jdecode('MyKnipsPics+04-1%2F05'),jdecode(''),'/60524/60933.html','true',[],''],
		['PAGE','72846',jdecode('MyKnipsPics+04-2%2F05'),jdecode(''),'/60524/72846.html','true',[],''],
		['PAGE','69428',jdecode('MyKnipsPics+10%2F05'),jdecode(''),'/60524/69428.html','true',[],''],
		['PAGE','63346',jdecode('MyKnipsPics+11%2F05'),jdecode(''),'/60524/63346.html','true',[],''],
		['PAGE','64424',jdecode('MyKnipsPics+12%2F05'),jdecode(''),'/60524/64424.html','true',[],''],
		['PAGE','75646',jdecode('MyKnipsPics+03%2F06'),jdecode(''),'/60524/75646.html','true',[],'']
	],''],
	['PAGE','52471',jdecode('Impressum'),jdecode(''),'/52471.html','true',[],'']];
var siteelementCount=33;
theSitetree.topTemplateName='Activate';
					                                                                    
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 */					                                                            
