/* [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','1133',jdecode('DIE+ERSTE+SEITE'),jdecode(''),'/1133.html','true',[],''],
	['PAGE','6559',jdecode('VITA'),jdecode(''),'/6559.html','true',[],''],
	['PAGE','1439',jdecode('AKTUELL'),jdecode(''),'/1439.html','true',[],''],
	['PAGE','4593',jdecode('MALEREI'),jdecode(''),'/4593/index.html','true',[ 
		['PAGE','1301',jdecode('AQUARELL'),jdecode(''),'/4593/1301.html','true',[],''],
		['PAGE','1324',jdecode('ACRYL-MALEREI'),jdecode(''),'/4593/1324.html','true',[],''],
		['PAGE','1347',jdecode('ZEICHNEN'),jdecode(''),'/4593/1347.html','true',[],''],
		['PAGE','1393',jdecode('SCRATCHWORK'),jdecode(''),'/4593/1393.html','true',[],''],
		['PAGE','10893',jdecode('HAWAII-BILDER'),jdecode(''),'/4593/10893.html','true',[],''],
		['PAGE','8293',jdecode('KATZEN-MALEREI'),jdecode(''),'/4593/8293.html','true',[],''],
		['PAGE','43306',jdecode('Mieten+und+Aufh%E4ngen'),jdecode(''),'/4593/43306.html','true',[],'']
	],''],
	['PAGE','4639',jdecode('POESIE'),jdecode(''),'/4639.html','true',[],''],
	['PAGE','4662',jdecode('LITERATUR'),jdecode(''),'/4662.html','true',[],''],
	['PAGE','8862',jdecode('KLOSTERARBEITEN'),jdecode(''),'/8862.html','true',[],''],
	['PAGE','37836',jdecode('FOTO'),jdecode(''),'/37836.html','true',[],''],
	['PAGE','13193',jdecode('HOROSKOP'),jdecode(''),'/13193/index.html','true',[ 
		['PAGE','13216',jdecode('BAUMHOROSKOP'),jdecode(''),'/13193/13216.html','true',[],''],
		['PAGE','13262',jdecode('HEILPFLANZEN-H'),jdecode(''),'/13193/13262.html','true',[],'']
	],''],
	['PAGE','13308',jdecode('ZITATE-SPRICHWORT'),jdecode(''),'/13308.html','true',[],''],
	['PAGE','4731',jdecode('KINDER-WELT'),jdecode(''),'/4731/index.html','true',[ 
		['PAGE','4754',jdecode('KINDER-SPIELE'),jdecode(''),'/4731/4754.html','true',[],''],
		['PAGE','4777',jdecode('Aquarell-Kurs'),jdecode(''),'/4731/4777.html','true',[],''],
		['PAGE','4800',jdecode('HP-Reime'),jdecode(''),'/4731/4800.html','true',[],'']
	],''],
	['PAGE','5777',jdecode('WEIHNACHTEN'),jdecode(''),'/5777.html','true',[],''],
	['PAGE','5685',jdecode('OSTERN'),jdecode(''),'/5685.html','true',[],''],
	['PAGE','5593',jdecode('TIERE'),jdecode(''),'/5593.html','true',[],''],
	['PAGE','5961',jdecode('GEOGRAFIE-WELT'),jdecode(''),'/5961/index.html','true',[ 
		['PAGE','5984',jdecode('KANADA'),jdecode(''),'/5961/5984.html','true',[],''],
		['PAGE','6007',jdecode('DEUTSCHLAND'),jdecode(''),'/5961/6007.html','true',[],''],
		['PAGE','5662',jdecode('BAYERN'),jdecode(''),'/5961/5662.html','true',[],''],
		['PAGE','20008',jdecode('BARBAREN'),jdecode(''),'/5961/20008.html','true',[],''],
		['PAGE','19693',jdecode('KALTENBERG'),jdecode(''),'/5961/19693.html','true',[],'']
	],''],
	['PAGE','107875',jdecode('REZEPTE%2FKOCHEN'),jdecode(''),'/107875.html','true',[],''],
	['PAGE','13400',jdecode('AWARD'),jdecode(''),'/13400.html','true',[],''],
	['PAGE','11593',jdecode('Impressum-PRESSE'),jdecode(''),'/11593.html','true',[],''],
	['PAGE','105376',jdecode('G%E4stebuch'),jdecode(''),'/105376/index.html','true',[ 
		['PAGE','105377',jdecode('Eintr%E4ge'),jdecode(''),'/105376/105377.html','true',[],'']
	],'']];
var siteelementCount=37;
theSitetree.topTemplateName='Easy';
					                                                                    
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 */					                                                            
