/* [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','4466',jdecode('Home'),jdecode(''),'/4466.html','true',[],''],
	['PAGE','75096',jdecode('Verkaufspferde'),jdecode(''),'/75096/index.html','true',[ 
		['PAGE','312915',jdecode('April+in+the+Dark'),jdecode(''),'/75096/312915.html','true',[],''],
		['PAGE','307415',jdecode('Bella'),jdecode(''),'/75096/307415.html','true',[],''],
		['PAGE','314315',jdecode('Da+Vinci'),jdecode(''),'/75096/314315.html','true',[],''],
		['PAGE','311524',jdecode('Don+Tabiano'),jdecode(''),'/75096/311524.html','true',[],''],
		['PAGE','309508',jdecode('Fabienne'),jdecode(''),'/75096/309508.html','true',[],''],
		['PAGE','294915',jdecode('Femme+Fatale'),jdecode(''),'/75096/294915.html','true',[],''],
		['PAGE','313646',jdecode('First+Lady'),jdecode(''),'/75096/313646.html','true',[],''],
		['PAGE','313677',jdecode('For+Honey'),jdecode(''),'/75096/313677.html','true',[],''],
		['PAGE','309415',jdecode('Gabi'),jdecode(''),'/75096/309415.html','true',[],''],
		['PAGE','309570',jdecode('Heinrich+Heine+'),jdecode(''),'/75096/309570.html','true',[],''],
		['PAGE','313615',jdecode('Liandra'),jdecode(''),'/75096/313615.html','true',[],''],
		['PAGE','307508',jdecode('Pronto'),jdecode(''),'/75096/307508.html','true',[],''],
		['PAGE','313708',jdecode('Rainbow'),jdecode(''),'/75096/313708.html','true',[],''],
		['PAGE','300212',jdecode('Renoir'),jdecode(''),'/75096/300212.html','true',[],''],
		['PAGE','309477',jdecode('Weltzauber'),jdecode(''),'/75096/309477.html','true',[],'']
	],''],
	['PAGE','192302',jdecode('Pferdebilder'),jdecode(''),'/192302/index.html','true',[ 
		['PAGE','238602',jdecode('Rubin+in+%D6stereich'),jdecode(''),'/192302/238602.html','true',[],''],
		['PAGE','240301',jdecode('Rubins+1.+Turnier+'),jdecode(''),'/192302/240301.html','true',[],''],
		['PAGE','243202',jdecode('Rubin+siegt'),jdecode(''),'/192302/243202.html','true',[],''],
		['PAGE','245681',jdecode('Who+Knows+in+Hollywood'),jdecode(''),'/192302/245681.html','true',[],''],
		['PAGE','303515',jdecode('Neues+von+Espresso'),jdecode(''),'/192302/303515.html','true',[],'']
	],''],
	['PAGE','234900',jdecode('Erlenhof+in+Elsdorf'),jdecode(''),'/234900.html','true',[],''],
	['PAGE','75127',jdecode('Kontakt'),jdecode(''),'/75127/index.html','true',[ 
		['PAGE','228402',jdecode('Kontakt+%28Folgeseite%29'),jdecode(''),'/75127/228402.html','false',[],'']
	],''],
	['PAGE','190802',jdecode('Ihr+Weg+zu+uns'),jdecode(''),'/190802/index.html','true',[ 
		['PAGE','121802',jdecode('Anfahrt'),jdecode(''),'/190802/121802.html','true',[],'']
	],''],
	['PAGE','75158',jdecode('Interessante+Links'),jdecode(''),'/75158.html','true',[],''],
	['PAGE','229302',jdecode('Impressum'),jdecode(''),'/229302.html','true',[],''],
	['PAGE','234402',jdecode('Auto+%26+KFZ'),jdecode(''),'/234402.html','true',[],''],
	['PAGE','238228',jdecode('Laras+Seite'),jdecode(''),'/238228/index.html','true',[ 
		['PAGE','304051',jdecode('Chantre+W'),jdecode(''),'/238228/304051.html','true',[],''],
		['PAGE','304082',jdecode('Pointer'),jdecode(''),'/238228/304082.html','true',[],''],
		['PAGE','304113',jdecode('Luciano'),jdecode(''),'/238228/304113.html','true',[],''],
		['PAGE','304144',jdecode('Le+Beau+S'),jdecode(''),'/238228/304144.html','true',[],''],
		['PAGE','304175',jdecode('Sandanalina'),jdecode(''),'/238228/304175.html','true',[],''],
		['PAGE','304206',jdecode('Winnetou'),jdecode(''),'/238228/304206.html','true',[],'']
	],''],
	['PAGE','304775',jdecode('Ihr+Weg+zu+uns'),jdecode(''),'/304775.html','true',[],'']];
var siteelementCount=39;
theSitetree.topTemplateName='Match';
					                                                                    
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 */					                                                            

