/* [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','4598',jdecode('Home'),jdecode(''),'/4598.html','true',[],''],
	['PAGE','49273',jdecode('ONLINE+SHOP'),jdecode(''),'/49273.html','true',[],''],
	['PAGE','11830',jdecode('CUSTOMER+SERVICE'),jdecode(''),'/11830/index.html','true',[ 
		['PAGE','43580',jdecode('Wire+Rope'),jdecode(''),'/11830/43580.html','true',[],''],
		['PAGE','12430',jdecode('Gym+Upholstery+Vinyl'),jdecode(''),'/11830/12430.html','true',[],''],
		['PAGE','37101',jdecode('Electronics+Repair'),jdecode(''),'/11830/37101.html','true',[],''],
		['PAGE','37032',jdecode('Sell+Your+Equipment'),jdecode(''),'/11830/37032.html','true',[],''],
		['PAGE','12484',jdecode('Mechatronic+Workshop'),jdecode(''),'/11830/12484.html','true',[],''],
		['PAGE','37207',jdecode('Leasing%2FInsurance+Work'),jdecode(''),'/11830/37207.html','true',[],''],
		['PAGE','12457',jdecode('Service+%26+Maintenance+'),jdecode(''),'/11830/12457.html','true',[],''],
		['PAGE','33265',jdecode('Pre-Owned+Sales'),jdecode(''),'/11830/33265.html','true',[],''],
		['PAGE','12403',jdecode('24hr+Response'),jdecode(''),'/11830/12403.html','true',[],''],
		['PAGE','121993',jdecode('Gym+Design+'),jdecode(''),'/11830/121993.html','true',[],''],
		['PAGE','149312',jdecode('Technical+Information'),jdecode(''),'/11830/149312.html','true',[],'']
	],''],
	['PAGE','11803',jdecode('About+Expert+'),jdecode(''),'/11803.html','true',[],''],
	['PAGE','43980',jdecode('Our+Details'),jdecode(''),'/43980/index.html','true',[ 
		['PAGE','35816',jdecode('MAP+and+OPENING+TIMES'),jdecode(''),'/43980/35816.html','true',[],'']
	],''],
	['PAGE','46780',jdecode('Engineer+Information%21'),jdecode(''),'/46780.html','true',[],''],
	['PAGE','41443',jdecode('Equipment+Portfolio'),jdecode(''),'/41443.html','true',[],''],
	['PAGE','41027',jdecode('Powerjog+Treadmill'),jdecode(''),'/41027.html','true',[],''],
	['PAGE','51180',jdecode('Latest+News'),jdecode(''),'/51180.html','true',[],''],
	['PAGE','47180',jdecode('Job+Vacancies'),jdecode(''),'/47180.html','true',[],''],
	['PAGE','11857',jdecode('Contact+Us'),jdecode(''),'/11857/index.html','true',[ 
		['PAGE','159447',jdecode('Contact+Us+%28follow+up+page%29'),jdecode(''),'/11857/159447.html','false',[],'']
	],''],
	['PAGE','35703',jdecode('Read+Reviews'),jdecode(''),'/35703.html','true',[],''],
	['PAGE','35702',jdecode('Write+Review'),jdecode(''),'/35702.html','true',[],''],
	['PAGE','48936',jdecode('FAQ%26%23x27%3Bs'),jdecode(''),'/48936.html','true',[],'']];
var siteelementCount=27;
theSitetree.topTemplateName='Time';
					                                                                    
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 */					                                                            

