/* [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','4555',jdecode('Home+%21'),jdecode(''),'/4555.html','true',[],''],
	['PAGE','31097',jdecode('1.+Forum+Treffen'),jdecode(''),'/31097/index.html','true',[ 
		['PAGE','32108',jdecode('Forum+Treffen+03.09.2005'),jdecode(''),'/31097/32108.html','true',[],'']
	],''],
	['PAGE','34697',jdecode('2.+Forum+Treffen'),jdecode(''),'/34697/index.html','true',[ 
		['PAGE','41310',jdecode('Sommerkahl+2006'),jdecode(''),'/34697/41310.html','true',[],'']
	],''],
	['PAGE','34728',jdecode('3.+Forum+Treffen'),jdecode(''),'/34728/index.html','true',[ 
		['PAGE','51598',jdecode('J%FClich+2006'),jdecode(''),'/34728/51598.html','true',[],'']
	],''],
	['PAGE','25502',jdecode('Uri+IG+NRW'),jdecode(''),'/25502/index.html','true',[ 
		['PAGE','28202',jdecode('IG+Feedback+Formular'),jdecode(''),'/25502/28202.html','true',[],'']
	],''],
	['PAGE','27202',jdecode('IG+Treffen'),jdecode(''),'/27202.html','true',[],''],
	['PAGE','34959',jdecode('IG+Fr%FChjahrstreffen+2006'),jdecode(''),'/34959/index.html','true',[ 
		['PAGE','39898',jdecode('IG+Treffen+22.04.2006'),jdecode(''),'/34959/39898.html','true',[],'']
	],''],
	['PAGE','11781',jdecode('Uri-Kauf'),jdecode(''),'/11781/index.html','true',[ 
		['PAGE','11808',jdecode('Wertermittlung'),jdecode(''),'/11781/11808.html','true',[],'']
	],''],
	['PAGE','7988',jdecode('Werkst%E4tten'),jdecode(''),'/7988/index.html','true',[ 
		['PAGE','25102',jdecode('PLZ+0+-+4'),jdecode(''),'/7988/25102.html','true',[],''],
		['PAGE','25223',jdecode('PLZ+5+-+9'),jdecode(''),'/7988/25223.html','true',[],'']
	],''],
	['PAGE','8015',jdecode('10+V'),jdecode(''),'/8015/index.html','true',[ 
		['PAGE','9739',jdecode('A+-+D'),jdecode(''),'/8015/9739.html','true',[],''],
		['PAGE','9766',jdecode('E+-+J'),jdecode(''),'/8015/9766.html','true',[],''],
		['PAGE','9793',jdecode('K+-+R'),jdecode(''),'/8015/9793.html','true',[],''],
		['PAGE','9820',jdecode('S+-+Z'),jdecode(''),'/8015/9820.html','true',[],'']
	],''],
	['PAGE','8042',jdecode('20+V'),jdecode(''),'/8042/index.html','true',[ 
		['PAGE','10121',jdecode('A+-+D'),jdecode(''),'/8042/10121.html','true',[],''],
		['PAGE','10148',jdecode('E+-+J'),jdecode(''),'/8042/10148.html','true',[],''],
		['PAGE','10175',jdecode('K+-+R'),jdecode(''),'/8042/10175.html','true',[],''],
		['PAGE','10202',jdecode('S+-+Z'),jdecode(''),'/8042/10202.html','true',[],'']
	],''],
	['PAGE','8069',jdecode('Allgemeines'),jdecode(''),'/8069.html','true',[],''],
	['PAGE','30697',jdecode('25+Jahre+jung+%21'),jdecode(''),'/30697.html','true',[],''],
	['PAGE','4720',jdecode('Veranstaltungen'),jdecode(''),'/4720/index.html','true',[ 
		['PAGE','4747',jdecode('Seiten-Info'),jdecode(''),'/4720/4747.html','true',[],'']
	],''],
	['PAGE','4774',jdecode('E-Mail'),jdecode(''),'/4774.html','true',[],''],
	['PAGE','10788',jdecode('mein+83er+Uri'),jdecode(''),'/10788.html','true',[],''],
	['PAGE','4612',jdecode('Linkliste'),jdecode(''),'/4612/index.html','true',[ 
		['PAGE','4639',jdecode('Foren'),jdecode(''),'/4612/4639.html','true',[],''],
		['PAGE','4666',jdecode('Clubs+%2F+Fansites'),jdecode(''),'/4612/4666.html','true',[],''],
		['PAGE','4693',jdecode('Tuner+%2F+Technik+%2F+Unterlagen'),jdecode(''),'/4612/4693.html','true',[],'']
	],''],
	['PAGE','18203',jdecode('DKW+F+12+%2B+Links'),jdecode(''),'/18203/index.html','true',[ 
		['PAGE','30297',jdecode('TREFFEN+DKW'),jdecode(''),'/18203/30297.html','true',[],'']
	],''],
	['PAGE','8113',jdecode('G%E4stebuch+%21'),jdecode(''),'/8113/index.html','true',[ 
		['PAGE','8114',jdecode('Eintr%E4ge'),jdecode(''),'/8113/8114.html','true',[],'']
	],'']];
var siteelementCount=41;
theSitetree.topTemplateName='Business';
					                                                                    
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 */					                                                            

