/* [nodename, id, name, navigationtext, href, isnavigation, childs[], templatename] */

if (typeof(decodeURIComponent) == 'undefined') {
  decodeURIComponent = function(s) {
    return unescape(s);
  }
}

function jdecode(s) {
    s = s.replace(/\+/g, "%20")
    return decodeURIComponent(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','5501',jdecode('Home'),jdecode(''),'/5501.html','true',[],''],
	['PAGE','21601',jdecode('Products'),jdecode(''),'/21601/index.html','true',[ 
		['PAGE','21822',jdecode('STRUCTURAL+COMPONENTS'),jdecode(''),'/21601/21822.html','true',[],''],
		['PAGE','21843',jdecode('PROTECTION'),jdecode(''),'/21601/21843.html','true',[],'']
	],''],
	['PAGE','21401',jdecode('Shop'),jdecode(''),'/21401.html','true',[],''],
	['PAGE','17301',jdecode('Consumer+Inquiries'),jdecode(''),'/17301.html','true',[],''],
	['PAGE','24401',jdecode('Terms'),jdecode(''),'/24401.html','true',[],'']];
var siteelementCount=7;
theSitetree.topTemplateName='Linear';
theSitetree.paletteFamily='660000';
theSitetree.keyvisualId='2195';
theSitetree.keyvisualName='blanko.jpg';
theSitetree.fontsetId='361';
theSitetree.graphicsetId='411';
theSitetree.contentColor='FFFFFF';
theSitetree.contentBGColor='262626';
var localeDef={
  language: 'en',
  country: 'US'
};
var theTemplate={
				name: 			'Linear',
				paletteFamily: 	'660000',
				keyvisualId: 	'2195',
				keyvisualName: 	'blanko.jpg',
				fontsetId: 		'361',
				graphicsetId: 	'411',
				contentColor: 	'FFFFFF',
				contentBGColor: '262626',
				hasFlashNavigation: 'false',
				hasFlashLogo: 	'false',
				hasFlashCompanyname: 'false',
				hasFlashElements: 'false',
				hasCompanyname: 'false',
				a_color: 		'262626',
				b_color: 		'FFFFFF',
				c_color: 		'FFFFFF',
				d_color: 		'CC6600',
				e_color: 		'FFCC66',
				f_color: 		'999966',
				hasCustomLogo: 	'true',
				contentFontFace:'Verdana, Arial, Helvetica, sans-serif',
				contentFontSize:'12',
				useFavicon:     'false'
			  };
var webappMappings = {};
webappMappings['4001']=webappMappings['4001-23377928']={
webappId:    '4001',
documentId:  '21401',
internalId:  '23377928',
customField: 'language:en;country:US;'
};
webappMappings['5000']=webappMappings['5000-']={
webappId:    '5000',
documentId:  '5501',
internalId:  '',
customField: '20100122-214215'
};
webappMappings['5000']=webappMappings['5000-']={
webappId:    '5000',
documentId:  '24401',
internalId:  '',
customField: '20091011-175017'
};
webappMappings['7060']=webappMappings['7060-c52192408ce1f436c0063b068bdd7f75']={
webappId:    '7060',
documentId:  '21843',
internalId:  'c52192408ce1f436c0063b068bdd7f75',
customField: 'language:en;country:US;'
};
webappMappings['7008']=webappMappings['7008-19408']={
webappId:    '7008',
documentId:  '17301',
internalId:  '19408',
customField: 'language:en;country:US;'
};
webappMappings['5000']=webappMappings['5000-']={
webappId:    '5000',
documentId:  '21401',
internalId:  '',
customField: '20100122-221454'
};
webappMappings['5000']=webappMappings['5000-']={
webappId:    '5000',
documentId:  '21601',
internalId:  '',
customField: '20100111-190159'
};
webappMappings['5000']=webappMappings['5000-']={
webappId:    '5000',
documentId:  '17301',
internalId:  '',
customField: '20091024-101040'
};
webappMappings['5000']=webappMappings['5000-']={
webappId:    '5000',
documentId:  '21822',
internalId:  '',
customField: '20100111-190257'
};
webappMappings['5000']=webappMappings['5000-']={
webappId:    '5000',
documentId:  '21843',
internalId:  '',
customField: '20100122-221425'
};
var canonHostname = 'cmworker03.yourhostingaccount.com';
var accountId     = 'AENDU0IN3P98';
var companyName   = '';
var htmlTitle	  = 'OE-Accessories+++The+new+look+in+protection';
var metaKeywords  = 'land+rover+lr3+rock+slider%2C+sill+protection%2C+discovery3%2C+discovery+3%2C+rocker+panel%2C+sliders';
var metaContents  = 'The+first+and+only+sill+protection+for+Land+Rover+LR3+which+looks+as+good+as+it+protects.';
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;
};

theSitetree.getByXx = function(lookup, xx, ar) {
    if (typeof(ar) == 'undefined'){
    	ar = this;
    }
    for (var i=0; i < ar.length; i++) {
        if (ar[i][xx] == lookup){
        	return ar[i];
        }
        if (ar[i][POS_CHILDS].length > 0) {
        	var result=this.getByXx(lookup, xx, ar[i][POS_CHILDS]);
            if (result != null){
                return result;
               }
        }
    }
    return null;
};

function gotoPage(lookup) {
	if(__path_prefix__ == "/servlet/CMServeRES" && typeof (changePage) == 'function'){
		changePage(lookup);
		return;
	}
	var page = theSitetree.getHREF(lookup);
	if (!page) {
		var testFor = [ POS_NAME, POS_NAVIGATIONTEXT ];
		for (var i=0 ; i < testFor.length ; i++) {
			var p = theSitetree.getByXx(lookup, testFor[i]);
			if (p != null) {
				page = p[POS_HREF];
				break;
			}
		}
	}
	document.location.href = (new URL(__path_prefix__ + page, true, true)).toString();
};
