/* [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','177',jdecode('Home'),jdecode(''),'/177.html','true',[],''],
	['PAGE','333',jdecode('About+us'),jdecode(''),'/333/index.html','true',[ 
		['PAGE','3369',jdecode('Vision%2FMission'),jdecode(''),'/333/3369.html','true',[],''],
		['PAGE','360',jdecode('Our+Beliefs'),jdecode(''),'/333/360.html','true',[],'']
	],''],
	['PAGE','1895',jdecode('Teaching+Online'),jdecode(''),'/1895.html','true',[],''],
	['PAGE','1423',jdecode('Current+Courses'),jdecode(''),'/1423/index.html','true',[ 
		['PAGE','1432',jdecode('Personal+Effectiveness'),jdecode(''),'/1423/1432.html','true',[],''],
		['PAGE','1441',jdecode('Academic+Skills'),jdecode(''),'/1423/1441.html','true',[],''],
		['PAGE','1450',jdecode('Workplace+Skills'),jdecode(''),'/1423/1450.html','true',[],''],
		['PAGE','1459',jdecode('Industry-Wide+Skills'),jdecode(''),'/1423/1459.html','true',[],''],
		['PAGE','1468',jdecode('Leadership'),jdecode(''),'/1423/1468.html','true',[],''],
		['PAGE','1703',jdecode('Work+Transition'),jdecode(''),'/1423/1703.html','true',[],''],
		['PAGE','1477',jdecode('Schedule+of+Classes'),jdecode(''),'/1423/1477.html','true',[],'']
	],''],
	['PAGE','198',jdecode('Learner+Services'),jdecode(''),'/198/index.html','true',[ 
		['PAGE','351',jdecode('Admissions'),jdecode(''),'/198/351.html','true',[],''],
		['PAGE','1541',jdecode('Bookstore'),jdecode(''),'/198/1541.html','true',[],''],
		['PAGE','279',jdecode('Customer+Feedback'),jdecode(''),'/198/279/index.html','true',[ 
			['PAGE','1962',jdecode('Customer+Feedback+%28follow+up+page%29'),jdecode(''),'/198/279/1962.html','false',[],'']
		],''],
		['PAGE','234',jdecode('Help+Desk'),jdecode(''),'/198/234/index.html','true',[ 
			['PAGE','1969',jdecode('Help+Desk+%28follow+up+page%29'),jdecode(''),'/198/234/1969.html','false',[],'']
		],''],
		['PAGE','207',jdecode('Jobs'),jdecode(''),'/198/207.html','true',[],''],
		['PAGE','243',jdecode('Prices'),jdecode(''),'/198/243.html','true',[],'']
	],''],
	['PAGE','252',jdecode('Log-On'),jdecode(''),'/252.html','true',[],''],
	['PAGE','270',jdecode('What%26%23x27%3Bs+New'),jdecode(''),'/270.html','true',[],''],
	['PAGE','306',jdecode('Contact'),jdecode(''),'/306/index.html','true',[ 
		['PAGE','2956',jdecode('Contact+%28follow+up+page%29'),jdecode(''),'/306/2956.html','false',[],'']
	],''],
	['PAGE','225',jdecode('Products'),jdecode(''),'/225/index.html','true',[ 
		['PAGE','369',jdecode('For+Faculty'),jdecode(''),'/225/369.html','true',[],''],
		['PAGE','378',jdecode('For+Students'),jdecode(''),'/225/378.html','true',[],''],
		['PAGE','387',jdecode('For+Administrators'),jdecode(''),'/225/387.html','true',[],''],
		['PAGE','396',jdecode('For+Free'),jdecode(''),'/225/396.html','true',[],'']
	],'']];
var siteelementCount=31;
theSitetree.topTemplateName='Profile';
theSitetree.paletteFamily='003399';
theSitetree.keyvisualId='1285';
theSitetree.keyvisualName='holzbearbeitung.jpg';
theSitetree.fontsetId='191';
theSitetree.graphicsetId='228';
theSitetree.contentColor='000000';
theSitetree.contentBGColor='FFFFFF';
var theTemplate={
				name: 			'Profile'
,				paletteFamily: 	'003399'
,				keyvisualId: 	'1285'
,				keyvisualName: 	'holzbearbeitung.jpg'
,				fontsetId: 		'191'
,				graphicsetId: 	'228'
,				contentColor: 	'000000'
,				contentBGColor: 'FFFFFF'
,				a_color: 		'003399'
,				b_color: 		'000066'
,				c_color: 		'000000'
,				d_color: 		'FFFFFF'
,				e_color: 		'FFFFFF'
,				f_color: 		'FFFFFF'
 			  };					                                                                    
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 */					                                                            

