/* [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','43036',jdecode('Unser+ANGEBOT'),jdecode(''),'/43036/index.html','true',[ 
		['PAGE','4445',jdecode('Villa+MARY'),jdecode(''),'/43036/4445.html','true',[],''],
		['PAGE','21132',jdecode('Haus+Karas'),jdecode(''),'/43036/21132.html','true',[],''],
		['PAGE','27376',jdecode('Haus+Diana'),jdecode(''),'/43036/27376.html','true',[],''],
		['PAGE','28245',jdecode('Haus+Pajas'),jdecode(''),'/43036/28245.html','true',[],''],
		['PAGE','21164',jdecode('Haus+Vesna'),jdecode(''),'/43036/21164.html','true',[],''],
		['PAGE','32636',jdecode('Haus+Marija'),jdecode(''),'/43036/32636.html','true',[],''],
		['PAGE','27345',jdecode('Haus+Emmi'),jdecode(''),'/43036/27345.html','true',[],''],
		['PAGE','35113',jdecode('Haus+Marina'),jdecode(''),'/43036/35113.html','true',[],''],
		['PAGE','29710',jdecode('Haus+Stefan'),jdecode(''),'/43036/29710.html','true',[],''],
		['PAGE','35175',jdecode('Haus+Renata'),jdecode(''),'/43036/35175.html','true',[],''],
		['PAGE','29741',jdecode('Haus+Mikica'),jdecode(''),'/43036/29741.html','true',[],''],
		['PAGE','37536',jdecode('Haus+Vlado'),jdecode(''),'/43036/37536.html','true',[],''],
		['PAGE','42736',jdecode('Haus+Tabea'),jdecode(''),'/43036/42736.html','true',[],''],
		['PAGE','30433',jdecode('Haus+Biba'),jdecode(''),'/43036/30433.html','true',[],''],
		['PAGE','29648',jdecode('Haus+Mijo'),jdecode(''),'/43036/29648.html','true',[],''],
		['PAGE','37936',jdecode('Haus+Theresa'),jdecode(''),'/43036/37936.html','true',[],''],
		['PAGE','50437',jdecode('Haus+THERESA'),jdecode(''),'/43036/50437.html','true',[],''],
		['PAGE','38242',jdecode('Haus+Mandic'),jdecode(''),'/43036/38242.html','true',[],''],
		['PAGE','35082',jdecode('Haus+Steffi'),jdecode(''),'/43036/35082.html','true',[],''],
		['PAGE','30824',jdecode('Haus+Ruza+%28Vir%29'),jdecode(''),'/43036/30824.html','true',[],''],
		['PAGE','35144',jdecode('Haus+Anka'),jdecode(''),'/43036/35144.html','true',[],''],
		['PAGE','38936',jdecode('Haus+Rubinic'),jdecode(''),'/43036/38936.html','true',[],''],
		['PAGE','43967',jdecode('Haus+Horvat'),jdecode(''),'/43036/43967.html','true',[],''],
		['PAGE','30648',jdecode('Haus+Drago'),jdecode(''),'/43036/30648.html','true',[],''],
		['PAGE','29772',jdecode('Haus+Katharina'),jdecode(''),'/43036/29772.html','true',[],''],
		['PAGE','30793',jdecode('Haus+Nadalina'),jdecode(''),'/43036/30793.html','true',[],''],
		['PAGE','37967',jdecode('Haus+Bisera'),jdecode(''),'/43036/37967.html','true',[],'']
	],''],
	['PAGE','4664',jdecode('Kontakt'),jdecode(''),'/4664/index.html','true',[ 
		['PAGE','20637',jdecode('Kontakt+%28Folgeseite%29'),jdecode(''),'/4664/20637.html','false',[],'']
	],''],
	['PAGE','25945',jdecode('Anreise'),jdecode(''),'/25945.html','true',[],''],
	['PAGE','43836',jdecode('AGB%26%23x27%3Bs'),jdecode(''),'/43836.html','true',[],''],
	['PAGE','43867',jdecode('Hausordnung'),jdecode(''),'/43867.html','true',[],''],
	['PAGE','5637',jdecode('G%E4stebuch+%26+Forum'),jdecode(''),'/5637/index.html','true',[ 
		['PAGE','5638',jdecode('Eintr%E4ge'),jdecode(''),'/5637/5638.html','true',[],'']
	],''],
	['PAGE','34337',jdecode('Saison+2006'),jdecode(''),'/34337.html','true',[],''],
	['PAGE','40037',jdecode('Saison+2007'),jdecode(''),'/40037.html','true',[],''],
	['PAGE','46337',jdecode('Saison+2008'),jdecode(''),'/46337.html','true',[],''],
	['PAGE','46372',jdecode('Saison+2009'),jdecode(''),'/46372.html','true',[],''],
	['PAGE','22533',jdecode('Urlaubsshopping+'),jdecode(''),'/22533.html','true',[],''],
	['PAGE','32667',jdecode('Immobilienangebote'),jdecode(''),'/32667.html','true',[],'']];
var siteelementCount=41;
theSitetree.topTemplateName='Caribic';
					                                                                    
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 */					                                                            

