/* [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','2801',jdecode('Home'),jdecode(''),'/2801/index.html','true',[ 
		['PAGE','16443',jdecode('Curriculum'),jdecode(''),'/2801/16443.html','true',[],''],
		['PAGE','16422',jdecode('Scholarship+Program'),jdecode(''),'/2801/16422/index.html','true',[ 
			['PAGE','84401',jdecode('Scholarship+Program+%28follow+up+page%29'),jdecode(''),'/2801/16422/84401.html','false',[],'']
		],''],
		['PAGE','24101',jdecode('Corporate+Program'),jdecode(''),'/2801/24101.html','true',[],''],
		['PAGE','2894',jdecode('Work+From+Home'),jdecode(''),'/2801/2894.html','true',[],'']
	],''],
	['PAGE','2852',jdecode('About+us'),jdecode(''),'/2852/index.html','true',[ 
		['PAGE','45501',jdecode('Accreditation'),jdecode(''),'/2852/45501.html','true',[],''],
		['PAGE','45522',jdecode('MiTio+Testimonials'),jdecode(''),'/2852/45522.html','true',[],''],
		['PAGE','66701',jdecode('MiTio+in+the+News'),jdecode(''),'/2852/66701.html','true',[],''],
		['PAGE','16401',jdecode('MiTio+Foundation'),jdecode(''),'/2852/16401.html','true',[],''],
		['PAGE','9164',jdecode('MiTio+President'),jdecode(''),'/2852/9164.html','true',[],'']
	],''],
	['PAGE','2999',jdecode('Contact+Us'),jdecode(''),'/2999.html','true',[],'']];
var siteelementCount=13;
theSitetree.topTemplateName='Startup';
theSitetree.paletteFamily='002F2F';
theSitetree.keyvisualId='1378';
theSitetree.keyvisualName='lehrer.jpg';
theSitetree.fontsetId='234';
theSitetree.graphicsetId='298';
theSitetree.contentColor='000000';
theSitetree.contentBGColor='FFFFFF';
var theTemplate={
				name: 			'Startup',
				paletteFamily: 	'002F2F',
				keyvisualId: 	'1378',
				keyvisualName: 	'lehrer.jpg',
				fontsetId: 		'234',
				graphicsetId: 	'298',
				contentColor: 	'000000',
				contentBGColor: 'FFFFFF',
				hasFlashNavigation: 'false',
				hasFlashLogo: 	'false',
				hasFlashCompanyname: 'false',
				a_color: 		'002F2F',
				b_color: 		'666666',
				c_color: 		'000000',
				d_color: 		'FF0000',
				e_color: 		'FF0000',
				f_color: 		'FF0000',
				hasCustomLogo: 	'true',
				contentFontFace:'Arial, Helvetica, sans-serif',
				contentFontSize:'12'
			  };
var webappMappings = {};
webappMappings['1006']={
webappId:    '1006',
documentId:  '2801',
internalId:  '1006',
customField: '1006'
};
webappMappings['1001']={
webappId:    '1001',
documentId:  '16422',
internalId:  'aaff10ineny9118444ef8b8',
customField: ''
};
webappMappings['1001']={
webappId:    '1001',
documentId:  '84401',
internalId:  'aaff10ineny9118444ef8b8',
customField: 'followUp'
};
var canonHostname = 'wsc01.cm4all.affinity.com';
var accountId     = 'AAFF10INENY9';
var companyName   = 'Aqu%C3%AD+lo+puedes+lograr%21';
var htmlTitle	  = 'MITIO';
var metaKeywords  = 'Medical++Interpreting++Translating';
var metaContents  = 'Online+Interpreting+program%2C+6+weeks+to+complete.';
					                                                                    
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 */					                                                            




