/* [nodename, id, name, navigationtext, href, isnavigation, childs[]] */
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 theSitetree=[ 
	['PAGE','1153','Home','','/1153.html','',[]],
	['PAGE','1390','Service','','/1390/index.html','',[ 
		['PAGE','1413','Reparaturen','','/1390/1413.html','',[]],
		['PAGE','1436','TÜV und AU','','/1390/1436.html','',[]],
		['PAGE','1459','Inspektionen','','/1390/1459.html','',[]],
		['PAGE','1482','Unfallreparatur','','/1390/1482.html','',[]],
		['PAGE','8102','Allgemeines','','/1390/8102.html','',[]]
	]],
	['PAGE','7395','Wir über uns','','/7395/index.html','',[ 
		['PAGE','7441','Unser Team','','/7395/7441.html','',[]],
		['PAGE','1298','Öffnungszeiten','','/7395/1298.html','',[]],
		['PAGE','1321','Adresse, Telefon','','/7395/1321.html','',[]]
	]],
	['PAGE','7464','So finden Sie uns','','/7464.html','',[]],
	['PAGE','1367','Kontakt','','/1367/index.html','',[ 
		['PAGE','3324','Kontakt','','/1367/3324.html','false',[]]
	]],
	['PAGE','1505','Links','','/1505.html','',[]]];
var siteelementCount=15;
					                                                                    
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.getHREF = function(id) {                                                    
						var elem = this.getById(id);                                    
						if (elem != null)                                               
							return elem[POS_HREF];                                      
						return null;	                                                
					  };			                                                    
					                                                                    
theSitetree.getName = function(id) {                                                    
						var elem = this.getById(id);                                    
						if (elem != null)                                               
							return elem[POS_NAME];                                      
						return null;	                                                
					  };			                                                    
/* EOF */					                                                            

