/* [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'),jdecode(''),'/4555.html','true',[],''],
	['PAGE','4612',jdecode('Produkte'),jdecode(''),'/4612/index.html','true',[ 
		['PAGE','4666',jdecode('Hydrophile+Acryl+IOL'),jdecode(''),'/4612/4666.html','true',[],''],
		['PAGE','37932',jdecode('Hydrophobe+Acryl+IOL'),jdecode(''),'/4612/37932.html','true',[],''],
		['PAGE','46808',jdecode('Phototrope+IOL'),jdecode(''),'/4612/46808.html','true',[],''],
		['PAGE','37901',jdecode('Blaulicht-Filter+IOL'),jdecode(''),'/4612/37901.html','true',[],''],
		['PAGE','26330',jdecode('PMMA+IOL'),jdecode(''),'/4612/26330.html','true',[],''],
		['PAGE','34401',jdecode('IOL-Faltsysteme'),jdecode(''),'/4612/34401.html','true',[],''],
		['PAGE','26357',jdecode('Kapselspannringe'),jdecode(''),'/4612/26357.html','true',[],''],
		['PAGE','4693',jdecode('Viskoelastika+N-Hyal.'),jdecode(''),'/4612/4693.html','true',[],''],
		['PAGE','38770',jdecode('Viskoelastika+HPMC'),jdecode(''),'/4612/38770.html','true',[],''],
		['PAGE','48419',jdecode('Phako-Zubeh%F6r'),jdecode(''),'/4612/48419.html','true',[],''],
		['PAGE','4720',jdecode('BSS'),jdecode(''),'/4612/4720.html','true',[],''],
		['PAGE','47620',jdecode('OP+Sets'),jdecode(''),'/4612/47620.html','true',[],''],
		['PAGE','45408',jdecode('Schwammprodukte'),jdecode(''),'/4612/45408.html','true',[],''],
		['PAGE','4747',jdecode('OP-Messer'),jdecode(''),'/4612/4747.html','true',[],''],
		['PAGE','4774',jdecode('Diamantmesser'),jdecode(''),'/4612/4774.html','true',[],''],
		['PAGE','4801',jdecode('Instrumente'),jdecode(''),'/4612/4801/index.html','true',[ 
			['PAGE','46652',jdecode('Instrumente+%28Folgeseite%29'),jdecode(''),'/4612/4801/46652.html','false',[],'']
		],''],
		['PAGE','59196',jdecode('Meibom-Dr%FCsen-Sonden'),jdecode(''),'/4612/59196.html','true',[],''],
		['PAGE','48450',jdecode('Tonometer'),jdecode(''),'/4612/48450.html','true',[],''],
		['PAGE','38575',jdecode('Smart+Plug'),jdecode(''),'/4612/38575.html','true',[],''],
		['PAGE','4639',jdecode('Parasol+Plugs'),jdecode(''),'/4612/4639.html','true',[],''],
		['PAGE','43734',jdecode('EXTEND+Plugs'),jdecode(''),'/4612/43734.html','true',[],''],
		['PAGE','57296',jdecode('Augentropfen'),jdecode(''),'/4612/57296.html','true',[],''],
		['PAGE','59733',jdecode('Anf%E4rbe-+und+Teststreifen'),jdecode(''),'/4612/59733.html','true',[],'']
	],''],
	['PAGE','4828',jdecode('Kontakt%2FImpressum'),jdecode(''),'/4828/index.html','true',[ 
		['PAGE','42920',jdecode('Kontakt+%28Folgeseite%29'),jdecode(''),'/4828/42920.html','false',[],''],
		['PAGE','30202',jdecode('Anfahrt'),jdecode(''),'/4828/30202.html','true',[],''],
		['PAGE','58397',jdecode('Ihr+Weg+zu+uns'),jdecode(''),'/4828/58397.html','true',[],'']
	],''],
	['PAGE','40209',jdecode('Gesundheit'),jdecode(''),'/40209.html','true',[],''],
	['PAGE','47908',jdecode('Stellenangebote'),jdecode(''),'/47908.html','true',[],'']];
var siteelementCount=32;
theSitetree.topTemplateName='Aeskulap';
					                                                                    
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 */					                                                            

