/* [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','4556',jdecode('Home'),jdecode(''),'/4556.html','true',[],''],
	['PAGE','7003',jdecode('English'),jdecode(''),'/7003.html','true',[],''],
	['PAGE','4937',jdecode('Training'),jdecode(''),'/4937/index.html','true',[ 
		['PAGE','37201',jdecode('Seminar+%DCbersicht'),jdecode(''),'/4937/37201.html','true',[],''],
		['PAGE','34332',jdecode('Online-Beratung'),jdecode(''),'/4937/34332.html','true',[],''],
		['PAGE','38746',jdecode('Kundenstimmen'),jdecode(''),'/4937/38746.html','true',[],''],
		['PAGE','38281',jdecode('Die+Trainerinnen'),jdecode(''),'/4937/38281.html','true',[],''],
		['PAGE','41102',jdecode('Seminar+Kalender+2012'),jdecode(''),'/4937/41102.html','true',[],''],
		['PAGE','37232',jdecode('AGBs'),jdecode(''),'/4937/37232.html','true',[],'']
	],''],
	['PAGE','39602',jdecode('Beratung'),jdecode(''),'/39602/index.html','true',[ 
		['PAGE','40702',jdecode('Coaching'),jdecode(''),'/39602/40702.html','true',[],''],
		['PAGE','4991',jdecode('Interims-+%2FProjekt+Management'),jdecode(''),'/39602/4991.html','true',[],''],
		['PAGE','40802',jdecode('Sri+City+SEZ'),jdecode(''),'/39602/40802.html','true',[],''],
		['PAGE','38446',jdecode('Unternehmensformen'),jdecode(''),'/39602/38446.html','true',[],''],
		['PAGE','34416',jdecode('Indien+Bildergalerie'),jdecode(''),'/39602/34416.html','true',[],'']
	],''],
	['PAGE','39446',jdecode('Sourcing'),jdecode(''),'/39446.html','true',[],''],
	['PAGE','5045',jdecode('Indien+Info'),jdecode(''),'/5045/index.html','true',[ 
		['PAGE','33633',jdecode('Publikationen'),jdecode(''),'/5045/33633.html','true',[],''],
		['PAGE','33695',jdecode('Buchtipps'),jdecode(''),'/5045/33695.html','true',[],'']
	],''],
	['PAGE','7219',jdecode('Projekte+'),jdecode(''),'/7219/index.html','true',[ 
		['PAGE','41902',jdecode('2010'),jdecode(''),'/7219/41902.html','true',[],''],
		['PAGE','37328',jdecode('2009'),jdecode(''),'/7219/37328.html','true',[],''],
		['PAGE','37297',jdecode('2008'),jdecode(''),'/7219/37297.html','true',[],''],
		['PAGE','35901',jdecode('2007'),jdecode(''),'/7219/35901.html','true',[],''],
		['PAGE','34301',jdecode('2006'),jdecode(''),'/7219/34301.html','true',[],''],
		['PAGE','32669',jdecode('2005'),jdecode(''),'/7219/32669.html','true',[],''],
		['PAGE','30815',jdecode('2004'),jdecode(''),'/7219/30815.html','true',[],''],
		['PAGE','7246',jdecode('2003'),jdecode(''),'/7219/7246.html','true',[],''],
		['PAGE','7273',jdecode('2002'),jdecode(''),'/7219/7273.html','true',[],''],
		['PAGE','7300',jdecode('2001'),jdecode(''),'/7219/7300.html','true',[],''],
		['PAGE','7327',jdecode('2000'),jdecode(''),'/7219/7327.html','true',[],''],
		['PAGE','7381',jdecode('1999+-+2002'),jdecode(''),'/7219/7381.html','true',[],''],
		['PAGE','7408',jdecode('1996+-+1998'),jdecode(''),'/7219/7408.html','true',[],'']
	],''],
	['PAGE','5153',jdecode('Kontakt'),jdecode(''),'/5153/index.html','true',[ 
		['PAGE','10216',jdecode('Anfahrt+N%FCrnberg'),jdecode(''),'/5153/10216.html','true',[],''],
		['PAGE','55503',jdecode('Ihr+Weg+zu+uns'),jdecode(''),'/5153/55503.html','true',[],''],
		['PAGE','5207',jdecode('Indien+-+Hyderabad'),jdecode(''),'/5153/5207.html','true',[],''],
		['PAGE','39802',jdecode('Indien+-+Pune'),jdecode(''),'/5153/39802.html','true',[],'']
	],''],
	['PAGE','32601',jdecode('GIRT'),jdecode(''),'/32601.html','true',[],'']];
var siteelementCount=39;
theSitetree.topTemplateName='Global';
					                                                                    
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 */					                                                            

