/* [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','4436',jdecode('Home'),jdecode(''),'/4436.html','true',[],''],
	['PAGE','7101',jdecode('About+us'),jdecode(''),'/7101.html','true',[],''],
	['PAGE','23805',jdecode('Birthday+Club+'),jdecode(''),'/23805/index.html','true',[ 
		['PAGE','45942',jdecode('Birthday+Club++%28follow+up+page%29'),jdecode(''),'/23805/45942.html','false',[],''],
		['PAGE','40175',jdecode('Birthday+Club++%28follow+up+page%29'),jdecode(''),'/23805/40175.html','false',[],''],
		['PAGE','40156',jdecode('Birthday+Club++%28follow+up+page%29'),jdecode(''),'/23805/40156.html','false',[],''],
		['PAGE','38842',jdecode('Birthday+Club++%28follow+up+page%29'),jdecode(''),'/23805/38842.html','false',[],''],
		['PAGE','38792',jdecode('Birthday+Club++%28follow+up+page%29'),jdecode(''),'/23805/38792.html','false',[],''],
		['PAGE','38770',jdecode('Birthday+Club++%28follow+up+page%29'),jdecode(''),'/23805/38770.html','false',[],''],
		['PAGE','38692',jdecode('Birthday+Club++%28follow+up+page%29'),jdecode(''),'/23805/38692.html','false',[],''],
		['PAGE','38670',jdecode('Birthday+Club++%28follow+up+page%29'),jdecode(''),'/23805/38670.html','false',[],''],
		['PAGE','38626',jdecode('Birthday+Club++%28follow+up+page%29'),jdecode(''),'/23805/38626.html','false',[],''],
		['PAGE','38604',jdecode('Birthday+Club++%28follow+up+page%29'),jdecode(''),'/23805/38604.html','false',[],''],
		['PAGE','38585',jdecode('Birthday+Club++%28follow+up+page%29'),jdecode(''),'/23805/38585.html','false',[],''],
		['PAGE','38558',jdecode('Birthday+Club++%28follow+up+page%29'),jdecode(''),'/23805/38558.html','false',[],''],
		['PAGE','38539',jdecode('Birthday+Club++%28follow+up+page%29'),jdecode(''),'/23805/38539.html','false',[],''],
		['PAGE','38520',jdecode('Birthday+Club++%28follow+up+page%29'),jdecode(''),'/23805/38520.html','false',[],''],
		['PAGE','38501',jdecode('Birthday+Club++%28follow+up+page%29'),jdecode(''),'/23805/38501.html','false',[],''],
		['PAGE','23908',jdecode('Birthday+Club+Sign+Up+Form+%28follow+up+page%29'),jdecode(''),'/23805/23908.html','false',[],'']
	],''],
	['PAGE','7128',jdecode('Service'),jdecode(''),'/7128.html','true',[],''],
	['PAGE','11155',jdecode('Menu'),jdecode(''),'/11155/index.html','true',[ 
		['PAGE','12310',jdecode('Menu1'),jdecode(''),'/11155/12310.html','true',[],''],
		['PAGE','12401',jdecode('Menu2'),jdecode(''),'/11155/12401.html','true',[],''],
		['PAGE','13318',jdecode('Menu3'),jdecode(''),'/11155/13318.html','true',[],''],
		['PAGE','13349',jdecode('Menu4'),jdecode(''),'/11155/13349.html','true',[],''],
		['PAGE','13380',jdecode('Menu5'),jdecode(''),'/11155/13380.html','true',[],'']
	],''],
	['PAGE','11128',jdecode('How+to+find+us'),jdecode(''),'/11128.html','true',[],''],
	['PAGE','14238',jdecode('Blackjack'),jdecode(''),'/14238.html','true',[],''],
	['PAGE','35102',jdecode('Weather'),jdecode(''),'/35102.html','true',[],''],
	['PAGE','35138',jdecode('Football'),jdecode(''),'/35138.html','true',[],''],
	['PAGE','36203',jdecode('Hockey'),jdecode(''),'/36203.html','true',[],''],
	['PAGE','36508',jdecode('Old+Menu'),jdecode(''),'/36508/index.html','true',[ 
		['PAGE','40134',jdecode('Feedback+%28follow+up+page%29'),jdecode(''),'/36508/40134.html','false',[],''],
		['PAGE','38817',jdecode('Feedback+%28follow+up+page%29'),jdecode(''),'/36508/38817.html','false',[],''],
		['PAGE','38748',jdecode('Feedback+%28follow+up+page%29'),jdecode(''),'/36508/38748.html','false',[],''],
		['PAGE','38726',jdecode('Feedback+%28follow+up+page%29'),jdecode(''),'/36508/38726.html','false',[],''],
		['PAGE','37625',jdecode('Feedback+%28follow+up+page%29'),jdecode(''),'/36508/37625.html','false',[],''],
		['PAGE','37603',jdecode('Feedback+%28follow+up+page%29'),jdecode(''),'/36508/37603.html','false',[],''],
		['PAGE','36803',jdecode('Feedback+%28follow+up+page%29'),jdecode(''),'/36508/36803.html','false',[],'']
	],'']];
var siteelementCount=39;
theSitetree.topTemplateName='Stone';
					                                                                    
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 */					                                                            
