/* [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','4595',jdecode('Home'),jdecode(''),'/4595.html','true',[],''],
	['PAGE','13765',jdecode('Unsere+Ferienwohnungen'),jdecode(''),'/13765/index.html','true',[ 
		['PAGE','56456',jdecode('Wohnung+T%FCrkis'),jdecode(''),'/13765/56456.html','true',[],''],
		['PAGE','54436',jdecode('Wohnung+Blau'),jdecode(''),'/13765/54436.html','true',[],''],
		['PAGE','52435',jdecode('Wohnung+Bordeaux'),jdecode(''),'/13765/52435.html','true',[],''],
		['PAGE','47635',jdecode('Wohnung+Terra'),jdecode(''),'/13765/47635.html','true',[],'']
	],''],
	['PAGE','13846',jdecode('Preis+%26+Leistung'),jdecode(''),'/13846/index.html','true',[ 
		['PAGE','57783',jdecode('Baby-Kleinkindservice'),jdecode(''),'/13846/57783.html','true',[],''],
		['PAGE','55045',jdecode('Spezieller+Service'),jdecode(''),'/13846/55045.html','true',[],'']
	],''],
	['PAGE','58273',jdecode('Pauschalangebote'),jdecode(''),'/58273/index.html','true',[ 
		['PAGE','52153',jdecode('Fr%FChling'),jdecode(''),'/58273/52153.html','true',[],''],
		['PAGE','61735',jdecode('Bilderbuchurlaub'),jdecode(''),'/58273/61735.html','true',[],''],
		['PAGE','63961',jdecode('Juni'),jdecode(''),'/58273/63961.html','true',[],'']
	],''],
	['PAGE','14534',jdecode('Aktuelles'),jdecode(''),'/14534/index.html','true',[ 
		['PAGE','58435',jdecode('Auszeichnungen'),jdecode(''),'/14534/58435.html','true',[],'']
	],''],
	['PAGE','13738',jdecode('Wir+%FCber+uns'),jdecode(''),'/13738/index.html','true',[ 
		['PAGE','17103',jdecode('Alles+%FCber+Ailingen'),jdecode(''),'/13738/17103.html','true',[],'']
	],''],
	['PAGE','17157',jdecode('Das+Drumherum'),jdecode(''),'/17157/index.html','true',[ 
		['PAGE','18354',jdecode('Spiel+%26+Spa%DF'),jdecode(''),'/17157/18354.html','true',[],''],
		['PAGE','55347',jdecode('Unsere+Tiere'),jdecode(''),'/17157/55347.html','true',[],''],
		['PAGE','60773',jdecode('Hof+und+Garten'),jdecode(''),'/17157/60773.html','true',[],''],
		['PAGE','36216',jdecode('Z%FCgle-Fahrt'),jdecode(''),'/17157/36216.html','true',[],'']
	],''],
	['PAGE','20530',jdecode('Unser+Obstbau'),jdecode(''),'/20530/index.html','true',[ 
		['PAGE','18003',jdecode('Die+Brennerei'),jdecode(''),'/20530/18003.html','true',[],''],
		['PAGE','20557',jdecode('Die+Ernte'),jdecode(''),'/20530/20557.html','true',[],''],
		['PAGE','20584',jdecode('Das+Jahr+mit+dem+Apfel'),jdecode(''),'/20530/20584.html','true',[],'']
	],''],
	['PAGE','13900',jdecode('Online-Anfragen'),jdecode(''),'/13900/index.html','true',[ 
		['PAGE','14283',jdecode('Online-Anfragen+%28Folgeseite%29'),jdecode(''),'/13900/14283.html','false',[],'']
	],''],
	['PAGE','53436',jdecode('Ihr+Weg+zu+uns'),jdecode(''),'/53436.html','true',[],''],
	['PAGE','20611',jdecode('Ausflugstipps'),jdecode(''),'/20611/index.html','true',[ 
		['PAGE','56873',jdecode('Blick+um+Ailingen'),jdecode(''),'/20611/56873.html','true',[],''],
		['PAGE','62441',jdecode('Barrierefrei-Kinderwagenfreundlich'),jdecode(''),'/20611/62441.html','true',[],''],
		['PAGE','33275',jdecode('Affenberg+Salem'),jdecode(''),'/20611/33275.html','true',[],''],
		['PAGE','31328',jdecode('Mainau'),jdecode(''),'/20611/31328.html','true',[],''],
		['PAGE','34945',jdecode('Meersburg'),jdecode(''),'/20611/34945.html','true',[],''],
		['PAGE','34910',jdecode('Pfahlbauten+Unteruldingen'),jdecode(''),'/20611/34910.html','true',[],''],
		['PAGE','37814',jdecode('Ravensburger+Spieleland'),jdecode(''),'/20611/37814.html','true',[],''],
		['PAGE','37404',jdecode('Friedrichshafen'),jdecode(''),'/20611/37404.html','true',[],''],
		['PAGE','38636',jdecode('Konstanz+mit+Sealife'),jdecode(''),'/20611/38636.html','true',[],''],
		['PAGE','40936',jdecode('Ravensburg'),jdecode(''),'/20611/40936.html','true',[],''],
		['PAGE','61835',jdecode('Mini+Mundus+Bodensee'),jdecode(''),'/20611/61835.html','true',[],'']
	],''],
	['PAGE','13981',jdecode('Links'),jdecode(''),'/13981.html','true',[],''],
	['PAGE','15003',jdecode('Impressum'),jdecode(''),'/15003.html','true',[],'']];
var siteelementCount=43;
theSitetree.topTemplateName='NewYork';
					                                                                    
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 */					                                                            

