/* [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','401',jdecode('Home'),jdecode(''),'/401.html','true',[],''],
	['PAGE','494',jdecode('Contact'),jdecode(''),'/494/index.html','true',[ 
		['PAGE','16301',jdecode('Adresses'),jdecode(''),'/494/16301.html','true',[],'']
	],''],
	['PAGE','452',jdecode('About+us'),jdecode(''),'/452/index.html','true',[ 
		['PAGE','16322',jdecode('+Our+team'),jdecode(''),'/452/16322.html','true',[],''],
		['PAGE','16343',jdecode('How+to+find+us'),jdecode(''),'/452/16343.html','true',[],'']
	],''],
	['PAGE','662',jdecode('Online+reservation'),jdecode(''),'/662.html','true',[],''],
	['PAGE','536',jdecode('Travel+Offers'),jdecode(''),'/536/index.html','true',[ 
		['PAGE','557',jdecode('Timeshare+Resort+Rentals'),jdecode(''),'/536/557.html','true',[],'']
	],''],
	['PAGE','746',jdecode('Travel+Options-Hawaii'),jdecode(''),'/746.html','true',[],''],
	['PAGE','10222',jdecode('All-Inclusive+Deals'),jdecode(''),'/10222.html','true',[],''],
	['PAGE','620',jdecode('Tips+%26+Tricks'),jdecode(''),'/620.html','true',[],''],
	['PAGE','683',jdecode('Service'),jdecode(''),'/683/index.html','true',[ 
		['PAGE','704',jdecode('Insurance'),jdecode(''),'/683/704.html','true',[],'']
	],''],
	['PAGE','809',jdecode('Request+a+brochure'),jdecode(''),'/809.html','true',[],''],
	['PAGE','830',jdecode('Terms+%26+conditions'),jdecode(''),'/830.html','true',[],''],
	['PAGE','16427',jdecode('Online+request'),jdecode(''),'/16427.html','true',[],''],
	['PAGE','25285',jdecode('Guestbook'),jdecode(''),'/25285/index.html','true',[ 
		['PAGE','25284',jdecode('Read+Guestbook'),jdecode(''),'/25285/25284.html','true',[],'']
	],'']];
var siteelementCount=19;
theSitetree.topTemplateName='Karo';
theSitetree.paletteFamily='7D88D7';
theSitetree.keyvisualId='552';
theSitetree.keyvisualName='erholung.jpg';
theSitetree.fontsetId='112';
theSitetree.graphicsetId='132';
theSitetree.contentColor='000000';
theSitetree.contentBGColor='7D88D7';
var theTemplate={
				hasFlashNavigation: 'false',
				hasFlashLogo: 	'false',
				hasFlashCompanyname: 'false',
				hasFlashElements: 'false',
				hasCompanyname: 'false',
				name: 			'Karo',
				paletteFamily: 	'7D88D7',
				keyvisualId: 	'552',
				keyvisualName: 	'erholung.jpg',
				fontsetId: 		'112',
				graphicsetId: 	'132',
				contentColor: 	'000000',
				contentBGColor: '7D88D7',
				a_color: 		'7D88D7',
				b_color: 		'C45EC1',
				c_color: 		'000000',
				d_color: 		'6A8493',
				e_color: 		'FFFFFF',
				f_color: 		'FFFFFF',
				hasCustomLogo: 	'false',
				contentFontFace:'Verdana, Arial, Helvetica, sans-serif',
				contentFontSize:'12'
			  };
var webappMappings = {};
webappMappings['1006']={
webappId:    '1006',
documentId:  '401',
internalId:  '1006',
customField: '1006'
};
webappMappings['1002']={
webappId:    '1002',
documentId:  '25284',
internalId:  '25285ahw050inegmm',
customField: 'action=list'
};
webappMappings['1002']={
webappId:    '1002',
documentId:  '25285',
internalId:  '25285ahw050inegmm',
customField: 'action=form&icq=false'
};
var canonHostname = 'wsc-worker03.chi.us.siteprotect.com';
var accountId     = 'AHW050INEGMM';
var companyName   = 'RILEY+TRAVEL';
var htmlTitle	  = 'Riley+Travel';
var metaKeywords  = 'riley%2C+travel%2C+cruises%2C+disney+world%2C+florida%2Cmexico%2C+all-inclusive%2C+resort%2C+las+vegas%2C+vacations%2C+family%2C+sport+teams%2C+wide+world+of+sports%2C+group+travel+';
var metaContents  = '';
					                                                                    
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 */					                                                            
