/* [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 POS_TARGET=8;
var theSitetree=[ 
	['PAGE','5601',jdecode('Home'),jdecode(''), jdecode('%2F5601.html'), 'true',[],'',''],
	['PAGE','6801',jdecode('Mediation'),jdecode(''), jdecode('%2F6801.html'), 'true',[],'',''],
	['PAGE','5673',jdecode('Contact'),jdecode(''), jdecode('%2F5673.html'), 'true',[],'','']];
var siteelementCount=3;
theSitetree.topTemplateName='Akropolis';
theSitetree.paletteFamily='4A587F';
theSitetree.keyvisualId='-1';
theSitetree.keyvisualName='keyv.jpg';
theSitetree.fontsetId='10344';
theSitetree.graphicsetId='10449';
theSitetree.contentColor='FFFFFF';
theSitetree.contentBGColor='4A587F';
var localeDef={
  language: 'en',
  country: 'US'
};
var prodDef={
  wl_name: 'comcast',
  product: 'WSCSYSSSSLYTC24M'
};
var theTemplate={
				hasFlashNavigation: 'false',
				hasFlashLogo: 	'false',
				hasFlashCompanyname: 'false',
				hasFlashElements: 'false',
				hasCompanyname: 'false',
				name: 			'Akropolis',
				paletteFamily: 	'4A587F',
				keyvisualId: 	'-1',
				keyvisualName: 	'keyv.jpg',
				fontsetId: 		'10344',
				graphicsetId: 	'10449',
				contentColor: 	'FFFFFF',
				contentBGColor: '4A587F',
				a_color: 		'4A587F',
				b_color: 		'FFFFFF',
				c_color: 		'FFFFFF',
				d_color: 		'FFFFFF',
				e_color: 		'FFFFFF',
				f_color: 		'FFFFFF',
				hasCustomLogo: 	'true',
				contentFontFace:'Arial, Helvetica, sans-serif',
				contentFontSize:'12',
				useFavicon:     'false'
			  };
var webappMappings = {};
webappMappings['5000']=webappMappings['5000-']={
webappId:    '5000',
documentId:  '5601',
internalId:  '',
customField: '20111128-144312'
};
webappMappings['5000']=webappMappings['5000-']={
webappId:    '5000',
documentId:  '6801',
internalId:  '',
customField: '20111024-092148'
};
webappMappings['5000']=webappMappings['5000-']={
webappId:    '5000',
documentId:  '5673',
internalId:  '',
customField: '20111024-091546'
};
webappMappings['1006']=webappMappings['1006-1006']={
webappId:    '1006',
documentId:  '5601',
internalId:  '1006',
customField: '1006'
};
var webAppHostname = 'cgi-wsc.chi.us.siteprotect.com:80';
var canonHostname = 'wsc-worker04.chi.us.siteprotect.com';
var accountId     = 'AHW050INVBI0';
var companyName   = 'ATTORNEY+CHRISTINE+BARRETT';
var htmlTitle	  = 'Murfreesboro+Tennessee+Attorney+Divorce+Family+Law+Criminal+Defense+Collection+Employment+Juvenile+Lawyer';
var metaKeywords  = 'Divorce+Attorney+in+Murfreesboro+Tennessee%2C+Divorce+Lawyer%2C+Christine+Barrett%2C+Cannon+County%2C+Rutherford+county%2C+Criminal%2C+Defense%2C+Divorce%2C+DUI%2C++Family+Law%2C+FREE+Fee+Estimate%2C+Free+Consultation%2C+Attorney+fee%2C+Legal+Services%2C+Mediation%2C+Uncontested%2C+Contested%2C+Visitation%2C+Custody%2C+Support%2C+Termination%2C+Parents+Rights%2C+Restraining+Orders%2C+Powers%2C++Family+Mediation%2C+Civil+Mediation%2C+Agreements%2C+Marital+Dissolution+Agreement%2C+parenting+plan%2C+low+cost+divorce%2C++cheap+divorce%2C+tennessee%2C+Alimony%2C+other+legal+matters%2C+Wills%2C+Probate%2C+Conservatorship%2C++Collection%2C+Debt+negotiaion%2C+settlement%2C+Employment+Labor%2C+Buisness+Law%2C+Landlord%2C+Tenant%2C+Lawsuit%2C+Litigation%2C+DUI%2C+Assualt%2C+Misdemeanor%2C+Felony%2C+Drugs%2C+Theft%2C+Shoplifting%2C+Juvenile%2C+Grandparents+Rights%2C+Dependent+Neglect+Cases%2C+Termination+Parental+Rights%2C+Paternity%2C+';
var metaContents  = 'Divorce+Attorney+in+Murfreesboro%3B+Divorce+Lawyer%3B+Criminal+Defense+Attorney%3B+Attorney+Christine+Barrett%3B+Family+Law%3B+Divorce%2C+Child+Custody%2C+Grandparents+Rights%2C+Criminal+Defense%2C+DUI%2C+Misdemeanor%2C+Felony%2C+General+Sessions%2C+Circuit+Court%2C++Juvenile+Law%2C+Collection%2C+Debt+Negotiation%2C+Settlement%2C+Personal+Injury%2C+Landlord+Tenant%2C+Employment+Labor+Law%2C+Wills%2C+Power+of+Attorney%2C+Guardianship%2C+Conservatorship%2C+Business+Law%2C+Civil+Mediation%2C+Family+Mediation';
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();
};

