/////////////////////////////////////////////////////////////////////////////
// Function : NavNode (constructor)
// Comments :
/////////////////////////////////////////////////////////////////////////////
function NavNode(id, label, href, parent)
{
	this.m_parent = null;
	this.m_level = 0;

	if (parent)
	{
		this.m_parent = parent;
		this.m_level = parent.m_level+1;
	}

	this.m_id = id;

	// assume that m_label will most often be used directly as HTML
	this.m_rawlabel = label;

	label = label.replace(/&/g, '&amp;');
	label = label.replace(/</g, '&lt;');
	label = label.replace(/>/g, '&gt;');
	label = label.replace(/"/g, '&quot;');

	this.m_label = label;

	this.m_href = href;
	this.m_subNodes = new Array();

	var argValues = NavNode.arguments;
	var argCount = NavNode.arguments.length;

	for (i = 4 ; i < argCount ; i++)
	{
		var attrName = argValues[i].split("==")[0];
		var attrValue = argValues[i].split("==")[1];

		eval("this.cp_" + attrName + " = '" + attrValue + "';");
	}

	NavNode.prototype.addNode = addNode;
	NavNode.prototype.isSelected = isSelected;
}

/////////////////////////////////////////////////////////////////////////////
// Function : addNode
// Comments :
/////////////////////////////////////////////////////////////////////////////
function addNode(id, label, href)
{
	var newIndex = this.m_subNodes.length;
	var newNode = new NavNode(id, label, href, this);

	var argValues = addNode.arguments;
	var argCount = addNode.arguments.length;

	for (i = 3 ; i < argCount ; i++)
	{
		var attrName = argValues[i].split("==")[0];
		var attrValue = argValues[i].split("==")[1];

		eval("newNode.cp_" + attrName + " = '" + attrValue + "';");
	}

	this.m_subNodes[newIndex] = newNode;
	return newNode;
}

/////////////////////////////////////////////////////////////////////////////
// Function : isSelected
// Comments :
/////////////////////////////////////////////////////////////////////////////
function isSelected()
{
    var pos = window.location.href.lastIndexOf("/");
    var docname = window.location.href.substring(pos+1, window.location.href.length);

    pos = this.m_href.lastIndexOf("/");
    var myname = this.m_href.substring(pos+1, this.m_href.length);

    if (docname == myname)
		return true;
	else
		return false;
}

/////////////////////////////////////////////////////////////////////////////
// Function : customSectionPropertyExists
// Comments :
/////////////////////////////////////////////////////////////////////////////
function customSectionPropertyExists(csp)
{
	return (typeof csp != _U && csp != null);
}

/////////////////////////////////////////////////////////////////////////////
// Function : getCustomSectionProperty
// Comments :
/////////////////////////////////////////////////////////////////////////////
function getCustomSectionProperty(csp)
{
	if (customSectionPropertyExists(csp))
	{
		return csp;
	}
	else
	{
		return "";
	}
}

/////////////////////////////////////////////////////////////////////////////

var g_navNode_Root = new NavNode('15','Home',ssUrlPrefix + 'index.html',null,'ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9','xmlDocName==staticlist_home_news');
g_navNode_0=g_navNode_Root.addNode('1987','EOD',ssUrlPrefix + 'eod2/index.html','ChooseTitleBarStyle==Lake Blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_0_0=g_navNode_0.addNode('1988','About Us',ssUrlPrefix + 'eod2/abouteod/index.html','ChooseTitleBarStyle==Lake Blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_0_0_0=g_navNode_0_0.addNode('1998','Organizational Chart',ssUrlPrefix + 'eod2/abouteod/eodorgchart/index.html','ChooseTitleBarStyle==Lake Blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_0_0_1=g_navNode_0_0.addNode('1999','Services',ssUrlPrefix + 'eod2/abouteod/services/index.html','ChooseTitleBarStyle==Lake Blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_0_0_1_0=g_navNode_0_0_1.addNode('2000','Investigation of Complaints of Discrimination',ssUrlPrefix + 'eod2/abouteod/services/discrimination/index.html','ChooseTitleBarStyle==Lake Blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_0_1=g_navNode_0.addNode('1989','What\'s New',ssUrlPrefix + 'eod2/whatsnew/index.html','ChooseTitleBarStyle==Lake Blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_0_2=g_navNode_0.addNode('1990','Investigation of Complaints of Discrimination',ssUrlPrefix + 'eod2/discrimination/index.html','ChooseTitleBarStyle==Lake Blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_0_3=g_navNode_0.addNode('1991','Business Programs',ssUrlPrefix + 'eod2/programs/index.html','ChooseTitleBarStyle==Lake Blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1=g_navNode_Root.addNode('21','Residents',ssUrlPrefix + 'residents/index.html','ChooseTitleBarStyle==Plum','PageTitleBarText==Residents','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_1_0=g_navNode_1.addNode('503','Neighborhood Stabilization Programs and Foreclosure Prevention Information',ssUrlPrefix + 'residents/stabilization/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_0_0=g_navNode_1_0.addNode('504','Neighborhood Stabilization Program',ssUrlPrefix + 'residents/stabilization/nsp/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_0_0_0=g_navNode_1_0_0.addNode('1102','Am I Eligible',ssUrlPrefix + 'residents/stabilization/nsp/eligible/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_0_0_0_0=g_navNode_1_0_0_0.addNode('1109','Loan Qualifications',ssUrlPrefix + 'residents/stabilization/nsp/eligible/qualifications/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_0_0_1=g_navNode_1_0_0.addNode('1103','Steps to Homeownership',ssUrlPrefix + 'residents/stabilization/nsp/stepstohome/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_0_0_1_0=g_navNode_1_0_0_1.addNode('1110','Counseling Services',ssUrlPrefix + 'residents/stabilization/nsp/stepstohome/counseling/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_0_0_2=g_navNode_1_0_0.addNode('1104','Homeownership Program Options',ssUrlPrefix + 'residents/stabilization/nsp/programs/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_0_0_2_0=g_navNode_1_0_0_2.addNode('1111','Homeownership Assistance Program',ssUrlPrefix + 'residents/stabilization/nsp/programs/homebuyer/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_0_0_2_1=g_navNode_1_0_0_2.addNode('1112','Home Improvement Program',ssUrlPrefix + 'residents/stabilization/nsp/programs/improvement/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_0_0_2_2=g_navNode_1_0_0_2.addNode('1113','Move-in Ready Program',ssUrlPrefix + 'residents/stabilization/nsp/programs/movein/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_0_0_3=g_navNode_1_0_0.addNode('1105','How to Find Your Home',ssUrlPrefix + 'residents/stabilization/nsp/howtofind/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_0_0_4=g_navNode_1_0_0.addNode('1106','Real Estate \x26 Lending Professionals',ssUrlPrefix + 'residents/stabilization/nsp/roles/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_0_0_5=g_navNode_1_0_0.addNode('1107','Homebuyer, Professional and Community Resources',ssUrlPrefix + 'residents/stabilization/nsp/resources/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_0_0_5_0=g_navNode_1_0_0_5.addNode('1114','NSP Informational Sessions',ssUrlPrefix + 'residents/stabilization/nsp/resources/realtorinfo/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_0_0_6=g_navNode_1_0_0.addNode('1108','NSP Funding and Reporting Sources',ssUrlPrefix + 'residents/stabilization/nsp/funding/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_1=g_navNode_1.addNode('72','Social Services',ssUrlPrefix + 'residents/socserv/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Social Services','ShowAlert==true','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_2=g_navNode_1.addNode('73','Garbage \x26 Recycling',ssUrlPrefix + 'residents/garbage/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Garbage \x26 Recycling','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3=g_navNode_1.addNode('74','Water \x26 Sewer',ssUrlPrefix + 'residents/waterandsewer/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Utilities','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_0=g_navNode_1_3.addNode('1258','Water Services',ssUrlPrefix + 'residents/waterandsewer/waterservices/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_1=g_navNode_1_3.addNode('1259','Water Billing \x26 Rates',ssUrlPrefix + 'residents/waterandsewer/waterbillingrates/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_2=g_navNode_1_3.addNode('1260','Water Quality',ssUrlPrefix + 'residents/waterandsewer/waterquality/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_3=g_navNode_1_3.addNode('1261','Water Resources and Conservation',ssUrlPrefix + 'residents/waterandsewer/waterconservation/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_3_0=g_navNode_1_3_3.addNode('1968','Library',ssUrlPrefix + 'residents/waterandsewer/waterconservation/library/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_3_1=g_navNode_1_3_3.addNode('635','Literature and Media',ssUrlPrefix + 'residents/waterandsewer/waterconservation/litmedia/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_3_2=g_navNode_1_3_3.addNode('636','Contact Water Resources and Conservation',ssUrlPrefix + 'residents/waterandsewer/waterconservation/contactwrc/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_3_3=g_navNode_1_3_3.addNode('637','Your Water News',ssUrlPrefix + 'residents/waterandsewer/waterconservation/waternews/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_3_4=g_navNode_1_3_3.addNode('638','Your Home',ssUrlPrefix + 'residents/waterandsewer/waterconservation/home/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_3_4_0=g_navNode_1_3_3_4.addNode('639','Outdoor',ssUrlPrefix + 'residents/waterandsewer/waterconservation/home/outdoor/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_3_4_1=g_navNode_1_3_3_4.addNode('1969','Quick Tips',ssUrlPrefix + 'residents/waterandsewer/waterconservation/home/quicktips/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_3_4_2=g_navNode_1_3_3_4.addNode('1970','Indoor',ssUrlPrefix + 'residents/waterandsewer/waterconservation/home/indoor/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_3_5=g_navNode_1_3_3.addNode('640','Your Business',ssUrlPrefix + 'residents/waterandsewer/waterconservation/business/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_3_5_0=g_navNode_1_3_3_5.addNode('1971','Indoor',ssUrlPrefix + 'residents/waterandsewer/waterconservation/business/indoor/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_3_5_1=g_navNode_1_3_3_5.addNode('1972','Quick Tips',ssUrlPrefix + 'residents/waterandsewer/waterconservation/business/quicktips/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_3_5_2=g_navNode_1_3_3_5.addNode('643','Outdoor',ssUrlPrefix + 'residents/waterandsewer/waterconservation/business/outdoor/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_3_6=g_navNode_1_3_3.addNode('1973','Your School',ssUrlPrefix + 'residents/waterandsewer/waterconservation/yourschool/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_3_6_0=g_navNode_1_3_3_6.addNode('1974','Classroom Materials',ssUrlPrefix + 'residents/waterandsewer/waterconservation/yourschool/classmaterials/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_3_7=g_navNode_1_3_3.addNode('644','Your Water',ssUrlPrefix + 'residents/waterandsewer/waterconservation/yourwater/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_3_7_0=g_navNode_1_3_3_7.addNode('652','Salinity',ssUrlPrefix + 'residents/waterandsewer/waterconservation/yourwater/salinity/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_3_7_1=g_navNode_1_3_3_7.addNode('1975','History of Phoenix Water',ssUrlPrefix + 'residents/waterandsewer/waterconservation/yourwater/phxhistory/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_3_8=g_navNode_1_3_3.addNode('671','FAQs',ssUrlPrefix + 'residents/waterandsewer/waterconservation/faqs/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_4=g_navNode_1_3.addNode('1262','Sewer Services',ssUrlPrefix + 'residents/waterandsewer/sewerservices/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_3_5=g_navNode_1_3.addNode('1263','Frequently Asked Questions',ssUrlPrefix + 'residents/waterandsewer/frequentlyaskedquestions/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_4=g_navNode_1.addNode('75','Neighborhoods',ssUrlPrefix + 'residents/neighbors/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Neighbors','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_5=g_navNode_1.addNode('76','Residential Building \x26 Permits',ssUrlPrefix + 'residents/building/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Residential Building \x26 Permits','ShowAlert==true','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_6=g_navNode_1.addNode('77','Grants \x26 Funding',ssUrlPrefix + 'residents/grants/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Grants \x26 Funding','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_7=g_navNode_1.addNode('78','Education',ssUrlPrefix + 'residents/education/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Education','ShowAlert==true','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_8=g_navNode_1.addNode('79','Libraries',ssUrlPrefix + 'residents/libraries/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Libraries','ShowAlert==true','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_9=g_navNode_1.addNode('80','Community Involvement',ssUrlPrefix + 'residents/community/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Community Involvement','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_9_0=g_navNode_1_9.addNode('501','Change for Phoenix',ssUrlPrefix + 'residents/community/changeforphx/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_9_0_0=g_navNode_1_9_0.addNode('531','FAQS',ssUrlPrefix + 'residents/community/changeforphx/faqs/index.html','ChooseTitleBarStyle==Plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_9_0_1=g_navNode_1_9_0.addNode('502','Contact Change for Phoenix',ssUrlPrefix + 'residents/community/changeforphx/emchange/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_9_1=g_navNode_1_9.addNode('62','Volunteer Today',ssUrlPrefix + 'residents/community/volunteer/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_10=g_navNode_1.addNode('81','Community Events',ssUrlPrefix + 'residents/events/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Community Events','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_11=g_navNode_1.addNode('82','Youth \x26 Teen Services',ssUrlPrefix + 'residents/youthsen/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Youth \x26 Teen Services','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_11_0=g_navNode_1_11.addNode('339','Kids',ssUrlPrefix + 'residents/youthsen/kids/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_11_1=g_navNode_1_11.addNode('340','Teens',ssUrlPrefix + 'residents/youthsen/teens/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12=g_navNode_1.addNode('83','Senior Services',ssUrlPrefix + 'residents/seniors/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Senior Services','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0=g_navNode_1_12.addNode('174','Senior Centers',ssUrlPrefix + 'residents/seniors/seniorcenters/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_0=g_navNode_1_12_0.addNode('175','Adam Diaz',ssUrlPrefix + 'residents/seniors/seniorcenters/adamdiaz/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_0_0=g_navNode_1_12_0_0.addNode('176','Calendar',ssUrlPrefix + 'residents/seniors/seniorcenters/adamdiaz/calendar/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_0_1=g_navNode_1_12_0_0.addNode('177','Congregate Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/adamdiaz/cmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_0_2=g_navNode_1_12_0_0.addNode('178','Home Delivery Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/adamdiaz/hmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_1=g_navNode_1_12_0.addNode('179','Chinese',ssUrlPrefix + 'residents/seniors/seniorcenters/chinese/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_1_0=g_navNode_1_12_0_1.addNode('180','Calendar',ssUrlPrefix + 'residents/seniors/seniorcenters/chinese/calendar/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_1_1=g_navNode_1_12_0_1.addNode('181','Chinese Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/chinese/menu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_1_2=g_navNode_1_12_0_1.addNode('182','Home Delivery Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/chinese/hmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_2=g_navNode_1_12_0.addNode('183','Deer Valley',ssUrlPrefix + 'residents/seniors/seniorcenters/deervalley/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_2_0=g_navNode_1_12_0_2.addNode('184','Calendar',ssUrlPrefix + 'residents/seniors/seniorcenters/deervalley/calendar/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_2_1=g_navNode_1_12_0_2.addNode('185','Congregate Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/deervalley/cmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_2_2=g_navNode_1_12_0_2.addNode('186','Home Delivery Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/deervalley/hmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_3=g_navNode_1_12_0.addNode('187','Desert West',ssUrlPrefix + 'residents/seniors/seniorcenters/desertwest/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_3_0=g_navNode_1_12_0_3.addNode('188','Calendar',ssUrlPrefix + 'residents/seniors/seniorcenters/desertwest/calendar/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_3_1=g_navNode_1_12_0_3.addNode('189','Congregate Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/desertwest/cmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_3_2=g_navNode_1_12_0_3.addNode('190','Home Delivery Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/desertwest/hmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_4=g_navNode_1_12_0.addNode('191','Devonshire',ssUrlPrefix + 'residents/seniors/seniorcenters/devonshire/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_4_0=g_navNode_1_12_0_4.addNode('192','Calendar',ssUrlPrefix + 'residents/seniors/seniorcenters/devonshire/calendar/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_4_1=g_navNode_1_12_0_4.addNode('193','Congregate Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/devonshire/cmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_4_2=g_navNode_1_12_0_4.addNode('194','Home Delivery Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/devonshire/hmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_5=g_navNode_1_12_0.addNode('195','Goelet A. C. Beuf',ssUrlPrefix + 'residents/seniors/seniorcenters/beuf/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_5_0=g_navNode_1_12_0_5.addNode('196','Calendar',ssUrlPrefix + 'residents/seniors/seniorcenters/beuf/calendar/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_5_1=g_navNode_1_12_0_5.addNode('197','Congregate Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/beuf/cmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_5_2=g_navNode_1_12_0_5.addNode('198','Home Delivery Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/beuf/hmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_6=g_navNode_1_12_0.addNode('203','Manzanita',ssUrlPrefix + 'residents/seniors/seniorcenters/manzanita/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_6_0=g_navNode_1_12_0_6.addNode('204','Calendar',ssUrlPrefix + 'residents/seniors/seniorcenters/manzanita/calendar/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_6_1=g_navNode_1_12_0_6.addNode('205','Congregate Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/manzanita/cmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_6_2=g_navNode_1_12_0_6.addNode('206','Home Delivery Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/manzanita/hmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_7=g_navNode_1_12_0.addNode('207','Marcos de Niza',ssUrlPrefix + 'residents/seniors/seniorcenters/marcosdeniza/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_7_0=g_navNode_1_12_0_7.addNode('208','Calendar',ssUrlPrefix + 'residents/seniors/seniorcenters/marcosdeniza/calendar/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_7_1=g_navNode_1_12_0_7.addNode('209','Congregate Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/marcosdeniza/cmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_7_2=g_navNode_1_12_0_7.addNode('210','Home Delivery Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/marcosdeniza/hmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_8=g_navNode_1_12_0.addNode('211','McDowell Place',ssUrlPrefix + 'residents/seniors/seniorcenters/mcdowellplace/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_8_0=g_navNode_1_12_0_8.addNode('212','Calendar',ssUrlPrefix + 'residents/seniors/seniorcenters/mcdowellplace/calendar/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_8_1=g_navNode_1_12_0_8.addNode('213','Congregate Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/mcdowellplace/cmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_8_2=g_navNode_1_12_0_8.addNode('214','Home Delivery Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/mcdowellplace/hmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_9=g_navNode_1_12_0.addNode('215','Paradise Valley',ssUrlPrefix + 'residents/seniors/seniorcenters/paradisevalley/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_9_0=g_navNode_1_12_0_9.addNode('216','Calendar',ssUrlPrefix + 'residents/seniors/seniorcenters/paradisevalley/calendar/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_9_1=g_navNode_1_12_0_9.addNode('217','Congregate Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/paradisevalley/cmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_9_2=g_navNode_1_12_0_9.addNode('218','Home Delivery Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/paradisevalley/hmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_10=g_navNode_1_12_0.addNode('219','Pecos',ssUrlPrefix + 'residents/seniors/seniorcenters/pecos/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_10_0=g_navNode_1_12_0_10.addNode('220','Calendar',ssUrlPrefix + 'residents/seniors/seniorcenters/pecos/calendar/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_10_1=g_navNode_1_12_0_10.addNode('221','Congregate Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/pecos/cmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_10_2=g_navNode_1_12_0_10.addNode('222','Home Delivery Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/pecos/hmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_11=g_navNode_1_12_0.addNode('223','Senior Opportunities West',ssUrlPrefix + 'residents/seniors/seniorcenters/sow/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_11_0=g_navNode_1_12_0_11.addNode('224','Calendar',ssUrlPrefix + 'residents/seniors/seniorcenters/sow/calendar/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_11_1=g_navNode_1_12_0_11.addNode('225','Congregate Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/sow/cmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_11_2=g_navNode_1_12_0_11.addNode('226','Home Delivery Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/sow/hmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_12=g_navNode_1_12_0.addNode('231','Shadow Mountain',ssUrlPrefix + 'residents/seniors/seniorcenters/shadowmountain/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_12_0=g_navNode_1_12_0_12.addNode('232','Calendar',ssUrlPrefix + 'residents/seniors/seniorcenters/shadowmountain/calendar/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_12_1=g_navNode_1_12_0_12.addNode('233','Congregate Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/shadowmountain/cmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_12_2=g_navNode_1_12_0_12.addNode('234','Home Delivery Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/shadowmountain/hmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_13=g_navNode_1_12_0.addNode('235','South Mountain',ssUrlPrefix + 'residents/seniors/seniorcenters/southmountain/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_13_0=g_navNode_1_12_0_13.addNode('236','Calendar',ssUrlPrefix + 'residents/seniors/seniorcenters/southmountain/calendar/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_13_1=g_navNode_1_12_0_13.addNode('237','Congregate Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/southmountain/cmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_13_2=g_navNode_1_12_0_13.addNode('238','Home Delivery Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/southmountain/hmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_14=g_navNode_1_12_0.addNode('239','Sunnyslope',ssUrlPrefix + 'residents/seniors/seniorcenters/sunnyslope/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_14_0=g_navNode_1_12_0_14.addNode('240','Calendar',ssUrlPrefix + 'residents/seniors/seniorcenters/sunnyslope/calendar/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_14_1=g_navNode_1_12_0_14.addNode('241','Congregate Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/sunnyslope/cmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_1_12_0_14_2=g_navNode_1_12_0_14.addNode('242','Home Delivery Menu',ssUrlPrefix + 'residents/seniors/seniorcenters/sunnyslope/hmenu/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2=g_navNode_Root.addNode('22','Businesses',ssUrlPrefix + 'business/index.html','ChooseTitleBarStyle==Plum','PageTitleBarText==Businesses','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_2_1=g_navNode_2.addNode('85','Why Phoenix',ssUrlPrefix + 'business/whyphx/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Why Phoenix?','ShowAlert==true','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_1_0=g_navNode_2_1.addNode('472','Workforce',ssUrlPrefix + 'business/whyphx/workforce/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_1_0_0=g_navNode_2_1_0.addNode('473','Workforce Development Programs',ssUrlPrefix + 'business/whyphx/workforce/workdevelopment/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_2=g_navNode_2.addNode('86','How the City Can Help',ssUrlPrefix + 'business/cityhelp/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==How the City Can Help','ShowAlert==true','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_2_0=g_navNode_2_2.addNode('406','We Specialize In . . .',ssUrlPrefix + 'business/cityhelp/specialize/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_2_0_0=g_navNode_2_2_0.addNode('474','Workforce Development',ssUrlPrefix + 'business/cityhelp/specialize/workdevelopment/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_3=g_navNode_2.addNode('87','Help for Employers',ssUrlPrefix + 'business/emphelp/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Help for Employers','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_3_0=g_navNode_2_3.addNode('460','Workforce Services',ssUrlPrefix + 'business/emphelp/workforce/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_4=g_navNode_2.addNode('opbiz','Operating a Business',ssUrlPrefix + 'business/busop/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Operating a Business','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_5=g_navNode_2.addNode('89','Contracting With the City',ssUrlPrefix + 'business/contract/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Contracting With the City','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_5_0=g_navNode_2_5.addNode('opportunities','Opportunities',ssUrlPrefix + 'business/contract/opportunities/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Opportunities','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_5_0_0=g_navNode_2_5_0.addNode('rfp','Requests for Proposals',ssUrlPrefix + 'business/contract/opportunities/rfp/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Requests for Proposals','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_5_0_1=g_navNode_2_5_0.addNode('rfq','Requests for Qualifications',ssUrlPrefix + 'business/contract/opportunities/rfq/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Requests for Qualifications','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_5_0_2=g_navNode_2_5_0.addNode('easbids','Consulting and Construction for Capital Improvement Projects',ssUrlPrefix + 'business/contract/opportunities/easbids/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Construction for Capital Improvement Projects','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_5_0_2_0=g_navNode_2_5_0_2.addNode('559','Current Opportunities by Due Date',ssUrlPrefix + 'business/contract/opportunities/easbids/currentbids/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_5_0_2_1=g_navNode_2_5_0_2.addNode('easinterview','Project Interviews',ssUrlPrefix + 'business/contract/opportunities/easbids/easinterview/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Project Interviews','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_5_0_2_2=g_navNode_2_5_0_2.addNode('prelimbids','Preliminary Bid Results',ssUrlPrefix + 'business/contract/opportunities/easbids/results/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Preliminary Bid Results','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_5_0_2_3=g_navNode_2_5_0_2.addNode('easawards','Recent Awards by Project Number',ssUrlPrefix + 'business/contract/opportunities/easbids/easawards/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Recent Awards','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_5_0_2_5=g_navNode_2_5_0_2.addNode('1078','RSS - EAS Newsfeed',ssUrlPrefix + 'business/contract/opportunities/easbids/rss/index.html','secondaryUrlVariableField==region9','xmlQueryText==dDocType \x3cmatches\x3e \x60IFB\x60  \x3cAND\x3e  dDocAccount \x3cmatches\x3e \x60INTER/CONSTR/EAS/BIDS\x60  \x3cAND\x3e  xWebsiteSection \x3cmatches\x3e \x60PHX\x3a559\x60');
g_navNode_2_5_0_2_6=g_navNode_2_5_0_2.addNode('672','Subscribe to EAS Newsletter',ssUrlPrefix + 'business/contract/opportunities/easbids/eassubscribe/index.html');
g_navNode_2_5_0_3=g_navNode_2_5_0.addNode('goods','Goods / General Services Vendors',ssUrlPrefix + 'business/contract/opportunities/goods/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Goods / General Services Vendors','ShowAlert==TRUE','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_2_5_0_3_0=g_navNode_2_5_0_3.addNode('finbids','Current Solicitations by Due Date',ssUrlPrefix + 'business/contract/opportunities/goods/finbids/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Current Solicitations by Due Date','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_5_0_3_1=g_navNode_2_5_0_3.addNode('finnumb','Current Solicitations by Number',ssUrlPrefix + 'business/contract/opportunities/goods/finnumb/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Current Solicitations by Number','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_5_0_3_2=g_navNode_2_5_0_3.addNode('fintabs','Tabulations and Awards by Date Opened',ssUrlPrefix + 'business/contract/opportunities/goods/fintabs/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Tabulations and Awards by Date Opened','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_5_0_3_3=g_navNode_2_5_0_3.addNode('fintabsnumb','Tabulations and Awards by Solicitation Number',ssUrlPrefix + 'business/contract/opportunities/goods/fintabsnumb/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Tabulations and Awards by Solicitation Number','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_5_0_4=g_navNode_2_5_0.addNode('aviation','Aviation Business Opportunities',ssUrlPrefix + 'business/contract/opportunities/aviation/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Aviation Business Opportunities','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_5_0_5=g_navNode_2_5_0.addNode('airportbiz','Business at the Airport',ssUrlPrefix + 'business/contract/opportunities/airportbiz/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Business at the Airport','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_5_1=g_navNode_2_5.addNode('vendor','Vendor Help Center',ssUrlPrefix + 'business/contract/vendor/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Vendor Help Center','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_5_1_0=g_navNode_2_5_1.addNode('purchase','Step-by-Step Supplying Goods, General or Professional Services ',ssUrlPrefix + 'business/contract/vendor/purchase/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Step-by-Step Supplying Goods, General or Professional Services','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_5_1_1=g_navNode_2_5_1.addNode('checklist','Checklist for All Vendors',ssUrlPrefix + 'business/contract/vendor/checklist/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Checklist for All Vendors','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_5_1_2=g_navNode_2_5_1.addNode('prosvcs','Professional Services Opportunities',ssUrlPrefix + 'business/contract/vendor/prosvcs/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Professional Services Opportunities','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_5_1_3=g_navNode_2_5_1.addNode('workshops','Workshops',ssUrlPrefix + 'business/contract/vendor/workshops/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Workshops','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_5_1_4=g_navNode_2_5_1.addNode('constrsubcontract','Step-by-Step Construction Subcontracting Opportunities',ssUrlPrefix + 'business/contract/vendor/constrsubcontract/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_5_2=g_navNode_2_5.addNode('mwdsbe','Small Business Enterprise',ssUrlPrefix + 'business/contract/mwdsbe/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Minority- and Woman-Owned, Disadvantaged and Small Businesses','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_6=g_navNode_2.addNode('90','Grants, Initiatives \x26 Funding',ssUrlPrefix + 'business/bizgrants/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Grants, Initiatives \x26 Funding','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_2_7=g_navNode_2.addNode('91','Development Guide',ssUrlPrefix + 'business/devguide/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Development Guide','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_8=g_navNode_2.addNode('92','Zoning',ssUrlPrefix + 'business/zoning/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Zoning','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_9=g_navNode_2.addNode('93','Permits',ssUrlPrefix + 'business/permits/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Permits','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_10=g_navNode_2.addNode('94','Filming in Phoenix',ssUrlPrefix + 'business/filmphx/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Filming in Phoenix','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_10_0=g_navNode_2_10.addNode('451','Locations',ssUrlPrefix + 'business/filmphx/locations/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_10_1=g_navNode_2_10.addNode('155','Contact the Film Office',ssUrlPrefix + 'business/filmphx/contact/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_11=g_navNode_2.addNode('95','Additional Resources',ssUrlPrefix + 'business/bizresource/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Additional Resources','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_11_0=g_navNode_2_11.addNode('1278','Rental Facilities',ssUrlPrefix + 'business/bizresource/rentalfacilities/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_11_0_0=g_navNode_2_11_0.addNode('1279','Phoenix Convention Center and Venues',ssUrlPrefix + 'business/bizresource/rentalfacilities/conventioncenter/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_11_0_0_0=g_navNode_2_11_0_0.addNode('1283','About Us',ssUrlPrefix + 'business/bizresource/rentalfacilities/conventioncenter/aboutus/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_11_0_0_1=g_navNode_2_11_0_0.addNode('1284','Directions and Parking',ssUrlPrefix + 'business/bizresource/rentalfacilities/conventioncenter/parking/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_11_0_0_2=g_navNode_2_11_0_0.addNode('1285','Events and Tickets',ssUrlPrefix + 'business/bizresource/rentalfacilities/conventioncenter/purchase/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_11_0_0_3=g_navNode_2_11_0_0.addNode('1286','While You\'re here',ssUrlPrefix + 'business/bizresource/rentalfacilities/conventioncenter/whilehere/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_11_0_0_4=g_navNode_2_11_0_0.addNode('1287','Building Layout',ssUrlPrefix + 'business/bizresource/rentalfacilities/conventioncenter/layout/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_11_0_1=g_navNode_2_11_0.addNode('1280','Symphony Hall',ssUrlPrefix + 'business/bizresource/rentalfacilities/symphonyhall/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_11_0_1_0=g_navNode_2_11_0_1.addNode('1306','Directions and Parking',ssUrlPrefix + 'business/bizresource/rentalfacilities/symphonyhall/parking/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_11_0_1_1=g_navNode_2_11_0_1.addNode('1307','Events and Tickets',ssUrlPrefix + 'business/bizresource/rentalfacilities/symphonyhall/eventstix/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_11_0_1_2=g_navNode_2_11_0_1.addNode('1308','Symphony Hall History',ssUrlPrefix + 'business/bizresource/rentalfacilities/symphonyhall/symphonyhallhistory/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_11_0_1_3=g_navNode_2_11_0_1.addNode('1309','Resident Companies',ssUrlPrefix + 'business/bizresource/rentalfacilities/symphonyhall/residentcompanies/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_11_0_2=g_navNode_2_11_0.addNode('1281','Orpheum Theatre',ssUrlPrefix + 'business/bizresource/rentalfacilities/orpheumtheatre/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_11_0_2_0=g_navNode_2_11_0_2.addNode('1310','Directions and Parking',ssUrlPrefix + 'business/bizresource/rentalfacilities/orpheumtheatre/orpheumparking/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_11_0_2_1=g_navNode_2_11_0_2.addNode('1311','Events and Tickets',ssUrlPrefix + 'business/bizresource/rentalfacilities/orpheumtheatre/orpheventstix/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_11_0_2_2=g_navNode_2_11_0_2.addNode('1312','Where\'s My Seat?',ssUrlPrefix + 'business/bizresource/rentalfacilities/orpheumtheatre/orphseating/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_11_0_2_3=g_navNode_2_11_0_2.addNode('1313','Orpheum History',ssUrlPrefix + 'business/bizresource/rentalfacilities/orpheumtheatre/orpheumhistory/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_11_0_3=g_navNode_2_11_0.addNode('1282','Executive Conference Center',ssUrlPrefix + 'business/bizresource/rentalfacilities/executiveconference/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_2_11_0_3_0=g_navNode_2_11_0_3.addNode('1316','Directions and Parking',ssUrlPrefix + 'business/bizresource/rentalfacilities/executiveconference/execparking/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_3=g_navNode_Root.addNode('23','Visitors \x26 Newcomers',ssUrlPrefix + 'visitors/index.html','ChooseTitleBarStyle==Plum','PageTitleBarText==Visitors \x26 Newcomers','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_3_0=g_navNode_3.addNode('96','Dining \x26 Lodging',ssUrlPrefix + 'visitors/dining/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Dining \x26 Lodging','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_3_1=g_navNode_3.addNode('97','Moving to Phoenix',ssUrlPrefix + 'visitors/moving/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Moving to Phoenix','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_4=g_navNode_Root.addNode('24','Public Safety',ssUrlPrefix + 'publicsafety/index.html','ChooseTitleBarStyle==Plum','PageTitleBarText==Public Safety','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_4_0=g_navNode_4.addNode('99','Crime Prevention',ssUrlPrefix + 'publicsafety/safecomm/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Crime Prevention','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_4_1=g_navNode_4.addNode('101','Fire Safety',ssUrlPrefix + 'publicsafety/safefire/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Fire Safety','ShowAlert==true','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_4_2=g_navNode_4.addNode('102','Personal Safety',ssUrlPrefix + 'publicsafety/safepers/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Personal Safety','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_4_3=g_navNode_4.addNode('103','Home \x26 Health',ssUrlPrefix + 'publicsafety/safehome/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Home \x26 Health','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_4_4=g_navNode_4.addNode('104','Traffic Safety',ssUrlPrefix + 'publicsafety/safetraf/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Traffic Safety','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_4_5=g_navNode_4.addNode('105','Homeland Security',ssUrlPrefix + 'publicsafety/safehmland/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Homeland Security','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_4_6=g_navNode_4.addNode('106','Public Safety Statistics',ssUrlPrefix + 'publicsafety/safestats/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Public Safety Statistics','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_5=g_navNode_Root.addNode('25','Transportation',ssUrlPrefix + 'transportation/index.html','ChooseTitleBarStyle==Plum','PageTitleBarText==Transportation','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_5_0=g_navNode_5.addNode('108','Getting Around Town',ssUrlPrefix + 'transportation/around/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Getting Around Town','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_5_0_0=g_navNode_5_0.addNode('342','Public Transit',ssUrlPrefix + 'transportation/around/publictransit/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_5_0_1=g_navNode_5_0.addNode('345','Streets and Dowtown',ssUrlPrefix + 'transportation/around/streetsanddowntown/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_5_0_1_0=g_navNode_5_0_1.addNode('1277','Parking',ssUrlPrefix + 'transportation/around/streetsanddowntown/parking/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_5_0_2=g_navNode_5_0.addNode('344','Bicycling',ssUrlPrefix + 'transportation/around/bicycling/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_5_1=g_navNode_5.addNode('109','Airports',ssUrlPrefix + 'transportation/airports/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Airports','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_5_2=g_navNode_5.addNode('110','Public Transit',ssUrlPrefix + 'transportation/transit/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Public Transit','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_5_3=g_navNode_5.addNode('111','Streets, Parking \x26 Traffic',ssUrlPrefix + 'transportation/dtown/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Streets, Parking \x26 Traffic','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_6=g_navNode_Root.addNode('26','Culture \x26 Recreation',ssUrlPrefix + 'recreation/index.html','ChooseTitleBarStyle==Plum','PageTitleBarText==Culture \x26 Recreation','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0=g_navNode_6.addNode('113','Parks \x26 Recreation',ssUrlPrefix + 'recreation/rec/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Parks \x26 Recreation','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_0_0=g_navNode_6_0.addNode('726','Facilities',ssUrlPrefix + 'recreation/rec/facilities/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0=g_navNode_6_0_0.addNode('725','Phoenix Golf',ssUrlPrefix + 'recreation/rec/facilities/golf/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_0=g_navNode_6_0_0_0.addNode('727','Book Now',ssUrlPrefix + 'recreation/rec/facilities/golf/booknow/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1=g_navNode_6_0_0_0.addNode('728','Golf Courses',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_0=g_navNode_6_0_0_0_1.addNode('748','Aguila',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/aguila/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_0_0=g_navNode_6_0_0_0_1_0.addNode('1076','Mens and Ladies Club',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/aguila/mensandladiesclub/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_0_1=g_navNode_6_0_0_0_1_0.addNode('1144','Photo Gallery',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/aguila/gallery/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_0_2=g_navNode_6_0_0_0_1_0.addNode('752','Aguila Calendar',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/aguila/aguilacalendar/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_0_3=g_navNode_6_0_0_0_1_0.addNode('753','Aguila Score',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/aguila/aguilascore/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_1=g_navNode_6_0_0_0_1.addNode('754','Aguila 9',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/aguila9/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_1_0=g_navNode_6_0_0_0_1_1.addNode('757','Aguila 9 Men\'s Club',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/aguila9/aguila9mensclub/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_1_1=g_navNode_6_0_0_0_1_1.addNode('1146','Photo Gallery',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/aguila9/gallery/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_1_2=g_navNode_6_0_0_0_1_1.addNode('758','Aguila 9 Calendar',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/aguila9/aguila9calendar/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_1_3=g_navNode_6_0_0_0_1_1.addNode('759','Aguila 9 Score',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/aguila9/aguila9score/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_2=g_navNode_6_0_0_0_1.addNode('760','Cave Creek',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/cavecreek/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_2_0=g_navNode_6_0_0_0_1_2.addNode('763','Cave Creek Men\'s Club',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/cavecreek/cavecreekmensclub/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_2_1=g_navNode_6_0_0_0_1_2.addNode('1147','Photo Gallery',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/cavecreek/gallery/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_2_2=g_navNode_6_0_0_0_1_2.addNode('764','Cave Creek Ladies Club',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/cavecreek/cavecreekladiesclub/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_2_3=g_navNode_6_0_0_0_1_2.addNode('765','Cave Creek Calendar',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/cavecreek/cavecreekcalendar/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_2_4=g_navNode_6_0_0_0_1_2.addNode('766','Cave Creek Score',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/cavecreek/cavecreekscore/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_3=g_navNode_6_0_0_0_1.addNode('767','Encanto',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/encanto/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_3_0=g_navNode_6_0_0_0_1_3.addNode('770','Encanto Men\'s Club',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/encanto/encantomensclub/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_3_1=g_navNode_6_0_0_0_1_3.addNode('1148','Photo Gallery',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/encanto/gallery/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_3_2=g_navNode_6_0_0_0_1_3.addNode('865','Encanto Ladies Club',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/encanto/encantoladiesclub/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_3_3=g_navNode_6_0_0_0_1_3.addNode('771','Encanto Calendar',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/encanto/encantocalendar/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_3_4=g_navNode_6_0_0_0_1_3.addNode('772','Encanto Score',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/encanto/encantoscore/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_4=g_navNode_6_0_0_0_1.addNode('773','Encanto 9',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/encanto9/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_4_0=g_navNode_6_0_0_0_1_4.addNode('866','Encanto 9 Men\'s Club',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/encanto9/encanto9mensclub/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_4_1=g_navNode_6_0_0_0_1_4.addNode('1149','Photo Gallery',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/encanto9/gallery/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_4_2=g_navNode_6_0_0_0_1_4.addNode('777','Encanto 9 Calendar',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/encanto9/encanto9calendar/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_4_3=g_navNode_6_0_0_0_1_4.addNode('778','Encanto 9 Score',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/encanto9/encanto9score/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_5=g_navNode_6_0_0_0_1.addNode('779','Maryvale',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/maryvale/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_5_0=g_navNode_6_0_0_0_1_5.addNode('782','Maryvale Men\'s Club',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/maryvale/maryvalemensclub/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_5_1=g_navNode_6_0_0_0_1_5.addNode('867','Maryvale Ladies Club',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/maryvale/maryvaleladiesclub/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_5_2=g_navNode_6_0_0_0_1_5.addNode('1150','Photo Gallery',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/maryvale/gallery/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_5_3=g_navNode_6_0_0_0_1_5.addNode('783','Maryvale Calendar',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/maryvale/maryvalecalendar/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_5_4=g_navNode_6_0_0_0_1_5.addNode('784','Maryvale Score',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/maryvale/maryvalescore/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_6=g_navNode_6_0_0_0_1.addNode('785','Palo Verde 9',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/paloverde9/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_6_0=g_navNode_6_0_0_0_1_6.addNode('868','Palo Verde 9 Men\'s Club',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/paloverde9/paloverdemensclub/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_6_1=g_navNode_6_0_0_0_1_6.addNode('788','Palo Verde 9 Ladies Club',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/paloverde9/paloverde9ladiesclub/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_6_2=g_navNode_6_0_0_0_1_6.addNode('1151','Photo Gallery',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/paloverde9/gallery/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_6_3=g_navNode_6_0_0_0_1_6.addNode('789','Palo Verde 9 Calendar',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/paloverde9/paloverde9calendar/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_1_6_4=g_navNode_6_0_0_0_1_6.addNode('790','Palo Verde 9 Score',ssUrlPrefix + 'recreation/rec/facilities/golf/golfcourses/paloverde9/paloverde9score/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_2=g_navNode_6_0_0_0.addNode('729','Cardholder',ssUrlPrefix + 'recreation/rec/facilities/golf/cardholder/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_2_0=g_navNode_6_0_0_0_2.addNode('791','Cardholder Log in',ssUrlPrefix + 'recreation/rec/facilities/golf/cardholder/cardholderlogin/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_2_0_0=g_navNode_6_0_0_0_2_0.addNode('792','Cancellation Policy',ssUrlPrefix + 'recreation/rec/facilities/golf/cardholder/cardholderlogin/cancellationpolicy/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_2_1=g_navNode_6_0_0_0_2.addNode('793','Cardholder Loyalty Program',ssUrlPrefix + 'recreation/rec/facilities/golf/cardholder/cardholderloyaltyprogram/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_2_1_0=g_navNode_6_0_0_0_2_1.addNode('794','Premium Maricopa',ssUrlPrefix + 'recreation/rec/facilities/golf/cardholder/cardholderloyaltyprogram/premiummaricopa/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_2_1_0_0=g_navNode_6_0_0_0_2_1_0.addNode('796','Cardholder Regular',ssUrlPrefix + 'recreation/rec/facilities/golf/cardholder/cardholderloyaltyprogram/premiummaricopa/cardholderregular/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_2_1_0_1=g_navNode_6_0_0_0_2_1_0.addNode('797','Cardholder Senior',ssUrlPrefix + 'recreation/rec/facilities/golf/cardholder/cardholderloyaltyprogram/premiummaricopa/cardholdersenior/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_2_1_1=g_navNode_6_0_0_0_2_1.addNode('795','Reg Non Maricopa',ssUrlPrefix + 'recreation/rec/facilities/golf/cardholder/cardholderloyaltyprogram/regnonmaricopa/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_2_1_1_0=g_navNode_6_0_0_0_2_1_1.addNode('798','NM Cardholder Reg',ssUrlPrefix + 'recreation/rec/facilities/golf/cardholder/cardholderloyaltyprogram/regnonmaricopa/nmcardholderreg/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_2_1_1_1=g_navNode_6_0_0_0_2_1_1.addNode('799','NM Cardholder Senior',ssUrlPrefix + 'recreation/rec/facilities/golf/cardholder/cardholderloyaltyprogram/regnonmaricopa/nmcardholdersenior/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3=g_navNode_6_0_0_0.addNode('730','Rates',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_0=g_navNode_6_0_0_0_3.addNode('800','Rates 18 Hole',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates18hole/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_0_0=g_navNode_6_0_0_0_3_0.addNode('802','Rate 18 Aguila',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates18hole/rate18aguila/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_0_0_0=g_navNode_6_0_0_0_3_0_0.addNode('1057','Rate 18 Aguila Fall',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates18hole/rate18aguila/rate18aguilafall/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_0_0_1=g_navNode_6_0_0_0_3_0_0.addNode('1058','Rate 18 Aguila Winter',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates18hole/rate18aguila/rate18aguilawinter/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_0_0_2=g_navNode_6_0_0_0_3_0_0.addNode('1059','Rate 18 Aguila Spring',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates18hole/rate18aguila/rate18aguilaspring/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_0_0_3=g_navNode_6_0_0_0_3_0_0.addNode('1060','Rate 18 Aguila Summer',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates18hole/rate18aguila/rate18aguilasummer/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_0_1=g_navNode_6_0_0_0_3_0.addNode('803','Rate 18 Cave Creek',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates18hole/cavecreek18/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_0_1_0=g_navNode_6_0_0_0_3_0_1.addNode('1061','Rate 18 Cave Creek Fall',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates18hole/cavecreek18/rate18cavecreekfall/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_0_1_1=g_navNode_6_0_0_0_3_0_1.addNode('1062','Rate 18 Cave Creek Winter',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates18hole/cavecreek18/rate18cavecreekwinter/index.htm','ChooseTitleBarStyle==palo verde','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_0_1_2=g_navNode_6_0_0_0_3_0_1.addNode('1063','Rate 18 Cave Creek Spring',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates18hole/cavecreek18/rate18cavecreekspring/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_0_1_3=g_navNode_6_0_0_0_3_0_1.addNode('1064','Rate 18 Cave Creek Summer',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates18hole/cavecreek18/rate18cavecreeksummer/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_0_2=g_navNode_6_0_0_0_3_0.addNode('804','Rate 18 Encanto',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates18hole/rate18encanto/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_0_2_0=g_navNode_6_0_0_0_3_0_2.addNode('1065','Rate 18 Encanto Fall',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates18hole/rate18encanto/rate18encantofall/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_0_2_1=g_navNode_6_0_0_0_3_0_2.addNode('1066','Rate 18 Encanto Winter',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates18hole/rate18encanto/rate18encantowinter/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_0_2_2=g_navNode_6_0_0_0_3_0_2.addNode('1067','Rate 18 Encanto Spring',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates18hole/rate18encanto/rate18encantospring/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_0_2_3=g_navNode_6_0_0_0_3_0_2.addNode('1068','Rate 18 Encanto Summer',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates18hole/rate18encanto/rate18encantosummer/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_0_3=g_navNode_6_0_0_0_3_0.addNode('805','Rate 18 Maryvale',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates18hole/rate18maryvale/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_0_3_0=g_navNode_6_0_0_0_3_0_3.addNode('1069','Rate 18 Maryvale Fall',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates18hole/rate18maryvale/rate18maryvalefall/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_0_3_1=g_navNode_6_0_0_0_3_0_3.addNode('1070','Rate 18 Maryvale Winter',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates18hole/rate18maryvale/rate18maryvalewinter/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_0_3_2=g_navNode_6_0_0_0_3_0_3.addNode('1071','Rate 18 Maryvale Spring',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates18hole/rate18maryvale/rate18maryvalespring/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_0_3_3=g_navNode_6_0_0_0_3_0_3.addNode('1072','Rate 18 Maryvale Summer',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates18hole/rate18maryvale/rate18maryvalesummer/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_1=g_navNode_6_0_0_0_3.addNode('801','Rates 9 Hole',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates9hole/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_1_0=g_navNode_6_0_0_0_3_1.addNode('806','Rate 9 Aguila',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates9hole/rate9aguila/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_1_0_0=g_navNode_6_0_0_0_3_1_0.addNode('807','Rate 9 Aguila Summer',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates9hole/rate9aguila/rate9aguilasummer/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_1_0_1=g_navNode_6_0_0_0_3_1_0.addNode('808','Rate 9 Aguila Winter',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates9hole/rate9aguila/rate9aguilawinter/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_1_1=g_navNode_6_0_0_0_3_1.addNode('809','Rate 9 Encanto',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates9hole/rate9encanto/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_1_1_0=g_navNode_6_0_0_0_3_1_1.addNode('810','Rate 9 Encanto Summer',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates9hole/rate9encanto/rate9encantosummer/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_1_1_1=g_navNode_6_0_0_0_3_1_1.addNode('811','Rate 9 Encanto Winter',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates9hole/rate9encanto/rate9encantowinter/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_1_2=g_navNode_6_0_0_0_3_1.addNode('812','Rate 9 Palo Verde',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates9hole/rate9paloverde/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_1_2_0=g_navNode_6_0_0_0_3_1_2.addNode('813','Rate 9 Palo Verde Summer',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates9hole/rate9paloverde/rate9paloverdesummer/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_3_1_2_1=g_navNode_6_0_0_0_3_1_2.addNode('814','Rate 9 Palo Verde Winter',ssUrlPrefix + 'recreation/rec/facilities/golf/rates/rates9hole/rate9paloverde/rate9paloverdewinter/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_4=g_navNode_6_0_0_0.addNode('731','Tournaments',ssUrlPrefix + 'recreation/rec/facilities/golf/tournaments/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_4_0=g_navNode_6_0_0_0_4.addNode('815','Tournaments Booking Information',ssUrlPrefix + 'recreation/rec/facilities/golf/tournaments/tournamentsbookinginformation/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_4_1=g_navNode_6_0_0_0_4.addNode('816','Tournaments Schedule',ssUrlPrefix + 'recreation/rec/facilities/golf/tournaments/tournamentsschedule/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_5=g_navNode_6_0_0_0.addNode('732','Master Calendar',ssUrlPrefix + 'recreation/rec/facilities/golf/mastercalendar/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_5_0=g_navNode_6_0_0_0_5.addNode('819','Calendar Tournaments',ssUrlPrefix + 'recreation/rec/facilities/golf/mastercalendar/calendartournaments/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_5_0_0=g_navNode_6_0_0_0_5_0.addNode('820','City Sponsored Tournaments Calendar',ssUrlPrefix + 'recreation/rec/facilities/golf/mastercalendar/calendartournaments/citysponsoredtourcalendar/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_5_1=g_navNode_6_0_0_0_5.addNode('827','Aeration/Overseeding',ssUrlPrefix + 'recreation/rec/facilities/golf/mastercalendar/aerationoverseeding/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_5_2=g_navNode_6_0_0_0_5.addNode('828','Events Calendar',ssUrlPrefix + 'recreation/rec/facilities/golf/mastercalendar/eventscalendar/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_6=g_navNode_6_0_0_0.addNode('733','Specials',ssUrlPrefix + 'recreation/rec/facilities/golf/specials/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_6_0=g_navNode_6_0_0_0_6.addNode('829','Specials Hotel Packages',ssUrlPrefix + 'recreation/rec/facilities/golf/specials/specialshotelpackages/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_6_1=g_navNode_6_0_0_0_6.addNode('830','Specials Promotions',ssUrlPrefix + 'recreation/rec/facilities/golf/specials/specialspromotions/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_7=g_navNode_6_0_0_0.addNode('734','Events',ssUrlPrefix + 'recreation/rec/facilities/golf/specialevents/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==true','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_8=g_navNode_6_0_0_0.addNode('735','Golf Instruction',ssUrlPrefix + 'recreation/rec/facilities/golf/golfinstruction/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_8_0=g_navNode_6_0_0_0_8.addNode('831','Junior Golf Instruction',ssUrlPrefix + 'recreation/rec/facilities/golf/golfinstruction/juniorgolfinstruction/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_8_0_0=g_navNode_6_0_0_0_8_0.addNode('832','Schedule Junior Golf Instruct',ssUrlPrefix + 'recreation/rec/facilities/golf/golfinstruction/juniorgolfinstruction/schedulejuniorgolfinstruct/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_8_0_1=g_navNode_6_0_0_0_8_0.addNode('833','Register Form Junior Golf',ssUrlPrefix + 'recreation/rec/facilities/golf/golfinstruction/juniorgolfinstruction/registerformjuniorgolf/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_8_0_2=g_navNode_6_0_0_0_8_0.addNode('834','Junior Card Golf',ssUrlPrefix + 'recreation/rec/facilities/golf/golfinstruction/juniorgolfinstruction/juniorcardgolf/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_8_1=g_navNode_6_0_0_0_8.addNode('835','Adult Golf Instruction',ssUrlPrefix + 'recreation/rec/facilities/golf/golfinstruction/adultgolfinstruction/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_9=g_navNode_6_0_0_0.addNode('736','Gift Cards',ssUrlPrefix + 'recreation/rec/facilities/golf/giftcards/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_10=g_navNode_6_0_0_0.addNode('737','Volunteer',ssUrlPrefix + 'recreation/rec/facilities/golf/volunteer/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_10_0=g_navNode_6_0_0_0_10.addNode('837','Volunteer Player Asst Prog',ssUrlPrefix + 'recreation/rec/facilities/golf/volunteer/volunteerplayerasstprog/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_10_1=g_navNode_6_0_0_0_10.addNode('838','Volunteer Citizen Golf Avd',ssUrlPrefix + 'recreation/rec/facilities/golf/volunteer/volunteerctizengolfavd/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_11=g_navNode_6_0_0_0.addNode('738','Contact Staff',ssUrlPrefix + 'recreation/rec/facilities/golf/contactstaff/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_0_0_0_12=g_navNode_6_0_0_0.addNode('739','Golf Updates',ssUrlPrefix + 'recreation/rec/facilities/golf/golfupdates/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_1=g_navNode_6.addNode('114','Arts and Culture',ssUrlPrefix + 'recreation/arts/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Arts \x26 Culture','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0=g_navNode_6_1.addNode('1157','Museums',ssUrlPrefix + 'recreation/arts/museums/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_1_0_0=g_navNode_6_1_0.addNode('1367','Police Museum',ssUrlPrefix + 'recreation/arts/museums/police/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1=g_navNode_6_1_0.addNode('1158','Pueblo Grande Museum',ssUrlPrefix + 'recreation/arts/museums/pueblo/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_0=g_navNode_6_1_0_1.addNode('1159','About the Museum',ssUrlPrefix + 'recreation/arts/museums/pueblo/about/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_0_0=g_navNode_6_1_0_1_0.addNode('1166','Visitor Information',ssUrlPrefix + 'recreation/arts/museums/pueblo/about/visitorinfo/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_0_0_0=g_navNode_6_1_0_1_0_0.addNode('1170','Directions',ssUrlPrefix + 'recreation/arts/museums/pueblo/about/visitorinfo/directions/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_0_0_1=g_navNode_6_1_0_1_0_0.addNode('1171','Visitor Materials',ssUrlPrefix + 'recreation/arts/museums/pueblo/about/visitorinfo/materials/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_0_0_2=g_navNode_6_1_0_1_0_0.addNode('1172','Site Etiquette',ssUrlPrefix + 'recreation/arts/museums/pueblo/about/visitorinfo/etiquette/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_0_1=g_navNode_6_1_0_1_0.addNode('1167','Director\'s Welcome',ssUrlPrefix + 'recreation/arts/museums/pueblo/about/welcome/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_0_2=g_navNode_6_1_0_1_0.addNode('1168','Newsletter',ssUrlPrefix + 'recreation/arts/museums/pueblo/about/newsletter/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_0_3=g_navNode_6_1_0_1_0.addNode('1169','Museum Store',ssUrlPrefix + 'recreation/arts/museums/pueblo/about/store/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_1=g_navNode_6_1_0_1.addNode('1160','Calendar of Events',ssUrlPrefix + 'recreation/arts/museums/pueblo/calendar/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_1_0=g_navNode_6_1_0_1_1.addNode('1173','Calendar Summary',ssUrlPrefix + 'recreation/arts/museums/pueblo/calendar/summary/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_1_1=g_navNode_6_1_0_1_1.addNode('1174','Annual Events',ssUrlPrefix + 'recreation/arts/museums/pueblo/calendar/annual/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_1_2=g_navNode_6_1_0_1_1.addNode('1175','Special Programs',ssUrlPrefix + 'recreation/arts/museums/pueblo/calendar/special/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_1_3=g_navNode_6_1_0_1_1.addNode('1176','Just For Kids',ssUrlPrefix + 'recreation/arts/museums/pueblo/calendar/kids/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_2=g_navNode_6_1_0_1.addNode('1161','Exhibits',ssUrlPrefix + 'recreation/arts/museums/pueblo/exhibits/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_2_0=g_navNode_6_1_0_1_2.addNode('1177','Outdoor Trail',ssUrlPrefix + 'recreation/arts/museums/pueblo/exhibits/outdoor/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_2_1=g_navNode_6_1_0_1_2.addNode('1178','Main Gallery',ssUrlPrefix + 'recreation/arts/museums/pueblo/exhibits/maingallery/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_2_2=g_navNode_6_1_0_1_2.addNode('1179','Childrens Gallery',ssUrlPrefix + 'recreation/arts/museums/pueblo/exhibits/childrengallery/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_2_3=g_navNode_6_1_0_1_2.addNode('1180','Changing Gallery',ssUrlPrefix + 'recreation/arts/museums/pueblo/exhibits/changing/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_2_4=g_navNode_6_1_0_1_2.addNode('1181','Upcoming Exhibits',ssUrlPrefix + 'recreation/arts/museums/pueblo/exhibits/upcoming/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_3=g_navNode_6_1_0_1.addNode('1162','Education and Resources',ssUrlPrefix + 'recreation/arts/museums/pueblo/education/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_3_0=g_navNode_6_1_0_1_3.addNode('1182','Group Tours',ssUrlPrefix + 'recreation/arts/museums/pueblo/education/groups/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_3_1=g_navNode_6_1_0_1_3.addNode('1183','School Tours',ssUrlPrefix + 'recreation/arts/museums/pueblo/education/schools/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_3_2=g_navNode_6_1_0_1_3.addNode('1184','Teacher Workshops',ssUrlPrefix + 'recreation/arts/museums/pueblo/education/teachers/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_3_3=g_navNode_6_1_0_1_3.addNode('1185','Volunteer Opportunities',ssUrlPrefix + 'recreation/arts/museums/pueblo/education/volunteer/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_3_4=g_navNode_6_1_0_1_3.addNode('1186','Research Library',ssUrlPrefix + 'recreation/arts/museums/pueblo/education/library/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_3_5=g_navNode_6_1_0_1_3.addNode('1187','Calendar of Events',ssUrlPrefix + 'recreation/arts/museums/pueblo/education/calendar/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_4=g_navNode_6_1_0_1.addNode('1163','City Archaeology',ssUrlPrefix + 'recreation/arts/museums/pueblo/archaeology/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_4_0=g_navNode_6_1_0_1_4.addNode('1188','Geocaching',ssUrlPrefix + 'recreation/arts/museums/pueblo/archaeology/geocaching/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_4_1=g_navNode_6_1_0_1_4.addNode('1189','Publications',ssUrlPrefix + 'recreation/arts/museums/pueblo/archaeology/publications/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_4_2=g_navNode_6_1_0_1_4.addNode('1190','Manuals \x26 Forms',ssUrlPrefix + 'recreation/arts/museums/pueblo/archaeology/forms/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_5=g_navNode_6_1_0_1.addNode('1164','Collections',ssUrlPrefix + 'recreation/arts/museums/pueblo/collections/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_5_0=g_navNode_6_1_0_1_5.addNode('1191','Adopt-a-Pot',ssUrlPrefix + 'recreation/arts/museums/pueblo/collections/adoptapot/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_5_1=g_navNode_6_1_0_1_5.addNode('1192','Research Library',ssUrlPrefix + 'recreation/arts/museums/pueblo/collections/library/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_5_2=g_navNode_6_1_0_1_5.addNode('1193','Pieces of History',ssUrlPrefix + 'recreation/arts/museums/pueblo/collections/history/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_5_3=g_navNode_6_1_0_1_5.addNode('1194','Repository Manual and Forms',ssUrlPrefix + 'recreation/arts/museums/pueblo/collections/forms/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_0_1_6=g_navNode_6_1_0_1.addNode('1165','Contact Pueblo Grande',ssUrlPrefix + 'recreation/arts/museums/pueblo/empueblo/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_1=g_navNode_6_1.addNode('1488','Art in Our Community',ssUrlPrefix + 'recreation/arts/community/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_2=g_navNode_6_1.addNode('1265','Performing Arts',ssUrlPrefix + 'recreation/arts/performingarts/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_2_0=g_navNode_6_1_2.addNode('1266','Symphony Hall',ssUrlPrefix + 'recreation/arts/performingarts/symphonyhall/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_2_0_0=g_navNode_6_1_2_0.addNode('1267','Directions and Parking',ssUrlPrefix + 'recreation/arts/performingarts/symphonyhall/parking/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_2_0_1=g_navNode_6_1_2_0.addNode('1268','Events and Tickets',ssUrlPrefix + 'recreation/arts/performingarts/symphonyhall/purchase/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_2_0_2=g_navNode_6_1_2_0.addNode('1269','Symphony Hall History',ssUrlPrefix + 'recreation/arts/performingarts/symphonyhall/symphonyhallhistory/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_2_0_3=g_navNode_6_1_2_0.addNode('1270','Resident Companies',ssUrlPrefix + 'recreation/arts/performingarts/symphonyhall/companies/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_2_1=g_navNode_6_1_2.addNode('1271','Orpheum Theatre',ssUrlPrefix + 'recreation/arts/performingarts/orpheumtheatre/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_2_1_0=g_navNode_6_1_2_1.addNode('1272','Directions and Parking',ssUrlPrefix + 'recreation/arts/performingarts/orpheumtheatre/parking/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_2_1_1=g_navNode_6_1_2_1.addNode('1273','Events and Tickets',ssUrlPrefix + 'recreation/arts/performingarts/orpheumtheatre/purchase/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_2_1_2=g_navNode_6_1_2_1.addNode('1274','Where\'s My Seat?',ssUrlPrefix + 'recreation/arts/performingarts/orpheumtheatre/seating/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_2_1_3=g_navNode_6_1_2_1.addNode('1275','Orpheum History',ssUrlPrefix + 'recreation/arts/performingarts/orpheumtheatre/orpheumhistory/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_3=g_navNode_6_1.addNode('1489','Historic Phoenix',ssUrlPrefix + 'recreation/arts/historic/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_1_4=g_navNode_6_1.addNode('1490','Artist Resources',ssUrlPrefix + 'recreation/arts/resources/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_2=g_navNode_6.addNode('115','City Attractions',ssUrlPrefix + 'recreation/attract/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==City Attractions','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_3=g_navNode_6.addNode('116','Places to Go',ssUrlPrefix + 'recreation/kidplace/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Places to Go','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_6_4=g_navNode_6.addNode('117','Youth Sports',ssUrlPrefix + 'recreation/kidsport/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Youth Sports','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_7=g_navNode_Root.addNode('27','City Government',ssUrlPrefix + 'citygovernment/index.html','ChooseTitleBarStyle==Plum','PageTitleBarText==City Government','ShowAlert==true','ShowDateTime==true','ShowWeather==true','UseInGrayNav==FALSE','secondaryUrlVariableField==region9');
g_navNode_7_0=g_navNode_7.addNode('391','Phoenix Recovery',ssUrlPrefix + 'citygovernment/recovery/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_0_0=g_navNode_7_0.addNode('653','Public Safety Projects',ssUrlPrefix + 'citygovernment/recovery/publicsafety/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_7_0_1=g_navNode_7_0.addNode('655','Housing \x26 Social Services Projects',ssUrlPrefix + 'citygovernment/recovery/housing/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_7_0_2=g_navNode_7_0.addNode('654','Transportation Projects',ssUrlPrefix + 'citygovernment/recovery/transportation/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_7_0_3=g_navNode_7_0.addNode('683','Water/Environment/Energy Projects',ssUrlPrefix + 'citygovernment/recovery/water/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_7_0_4=g_navNode_7_0.addNode('1053','Bonds/Loans',ssUrlPrefix + 'citygovernment/recovery/bonds/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_7_0_5=g_navNode_7_0.addNode('1075','Phoenix Contracting Opportunities',ssUrlPrefix + 'citygovernment/recovery/contracting/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_7_0_6=g_navNode_7_0.addNode('998','Contact Phoenix ARRA Staff',ssUrlPrefix + 'citygovernment/recovery/emrecovery/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_7_1=g_navNode_7.addNode('1855','Phoenix Innovation and Efficiency',ssUrlPrefix + 'citygovernment/efficiency/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_1_0=g_navNode_7_1.addNode('1856','Task Force Overview',ssUrlPrefix + 'citygovernment/efficiency/activities/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_1_1=g_navNode_7_1.addNode('1857','Reports',ssUrlPrefix + 'citygovernment/efficiency/reports/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_2=g_navNode_7.addNode('118','How Your City Works',ssUrlPrefix + 'citygovernment/cityworks/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==How Your City Works','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_3=g_navNode_7.addNode('119','Codes, Ordinances \x26 Public Records',ssUrlPrefix + 'citygovernment/codes/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Codes, Ordinances \x26 Public Records','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_4=g_navNode_7.addNode('120','Public Meetings',ssUrlPrefix + 'citygovernment/meetings/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Public Meetings','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_4_0=g_navNode_7_4.addNode('316','Public Meetings',ssUrlPrefix + 'citygovernment/meetings/publicmeetings/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_4_1=g_navNode_7_4.addNode('317','City Council Meetings',ssUrlPrefix + 'citygovernment/meetings/councilmeetings/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_5=g_navNode_7.addNode('123','Boards \x26 Commission',ssUrlPrefix + 'citygovernment/boards/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Boards \x26 Commissions','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_6=g_navNode_7.addNode('124','Election Information',ssUrlPrefix + 'citygovernment/elect/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Election Information','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_7=g_navNode_7.addNode('125','PHX11 \x28City TV\x29',ssUrlPrefix + 'citygovernment/phx11/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==PHX11 \x28City TV\x29','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_7_0=g_navNode_7_7.addNode('549','Programming',ssUrlPrefix + 'citygovernment/phx11/programming/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_7_0_0=g_navNode_7_7_0.addNode('538','Watch PHX 11 Live',ssUrlPrefix + 'citygovernment/phx11/programming/watchlive/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_7_0_1=g_navNode_7_7_0.addNode('539','Everything Phoenix',ssUrlPrefix + 'citygovernment/phx11/programming/everythingphx/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_7_0_2=g_navNode_7_7_0.addNode('540','DiverseCity',ssUrlPrefix + 'citygovernment/phx11/programming/diversecity/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_7_0_3=g_navNode_7_7_0.addNode('543','Phoenix City Council On The Issues',ssUrlPrefix + 'citygovernment/phx11/programming/oti/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_7_0_4=g_navNode_7_7_0.addNode('544','Building Phoenix',ssUrlPrefix + 'citygovernment/phx11/programming/buildingphx/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_7_0_5=g_navNode_7_7_0.addNode('542','Mayor\'s Phoenix Rising',ssUrlPrefix + 'citygovernment/phx11/programming/phxrising/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_7_0_7=g_navNode_7_7_0.addNode('1052','Water Works',ssUrlPrefix + 'citygovernment/phx11/programming/waterworks/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_7_0_8=g_navNode_7_7_0.addNode('546','Inside Phoenix',ssUrlPrefix + 'citygovernment/phx11/programming/insidephx/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_7_0_9=g_navNode_7_7_0.addNode('545','Green Phoenix',ssUrlPrefix + 'citygovernment/phx11/programming/greenphx/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_7_0_10=g_navNode_7_7_0.addNode('1050','Your City, Your Art',ssUrlPrefix + 'citygovernment/phx11/programming/cityart/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_7_0_11=g_navNode_7_7_0.addNode('541','Phoenix City Council Policy Session',ssUrlPrefix + 'citygovernment/phx11/programming/policysession/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_7_0_13=g_navNode_7_7_0.addNode('1047','Destination Phoenix',ssUrlPrefix + 'citygovernment/phx11/programming/dpsh/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_7_0_14=g_navNode_7_7_0.addNode('547','News Conferences',ssUrlPrefix + 'citygovernment/phx11/programming/newsconferences/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_7_0_15=g_navNode_7_7_0.addNode('1049','In the Public Interest',ssUrlPrefix + 'citygovernment/phx11/programming/interest/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_7_0_16=g_navNode_7_7_0.addNode('1048','Phoenix At Your Service',ssUrlPrefix + 'citygovernment/phx11/programming/pays/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_7_0_18=g_navNode_7_7_0.addNode('548','Other Programs',ssUrlPrefix + 'citygovernment/phx11/programming/otherpgms/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_7_1=g_navNode_7_7.addNode('550','Program Schedules',ssUrlPrefix + 'citygovernment/phx11/schedules/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_7_2=g_navNode_7_7.addNode('551','About PHX11',ssUrlPrefix + 'citygovernment/phx11/aboutphx11/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_7_3=g_navNode_7_7.addNode('557','Contact PHX11',ssUrlPrefix + 'citygovernment/phx11/emphx11/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_7_4=g_navNode_7_7.addNode('1705','Subscribe',ssUrlPrefix + 'citygovernment/phx11/subscribe/index.html','secondaryUrlVariableField==region9');
g_navNode_7_8=g_navNode_7.addNode('126','Court \x26 Legal',ssUrlPrefix + 'citygovernment/courts/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Court \x26 Legal','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_9=g_navNode_7.addNode('127','Financial Information',ssUrlPrefix + 'citygovernment/financial/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Financial Information','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_9_0=g_navNode_7_9.addNode('1962','Summary Budget',ssUrlPrefix + 'citygovernment/financial/summary/index.html');
g_navNode_7_9_2=g_navNode_7_9.addNode('1963','Detail Budget',ssUrlPrefix + 'citygovernment/financial/detail/index.html');
g_navNode_7_9_4=g_navNode_7_9.addNode('1964','Capital Budget',ssUrlPrefix + 'citygovernment/financial/capital/index.html');
g_navNode_7_9_6=g_navNode_7_9.addNode('1199','Financial Reports and Planning',ssUrlPrefix + 'citygovernment/financial/reports/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_9_6_0=g_navNode_7_9_6.addNode('1200','Comprehensive Annual Financial Report',ssUrlPrefix + 'citygovernment/financial/reports/cafr/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_9_6_1=g_navNode_7_9_6.addNode('1201','Single Audit Report',ssUrlPrefix + 'citygovernment/financial/reports/singleaudit/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_9_6_2=g_navNode_7_9_6.addNode('1202','Downtown Phoenix Hotel Corporation Financial Report',ssUrlPrefix + 'citygovernment/financial/reports/hotel/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_9_6_3=g_navNode_7_9_6.addNode('1961','Civic Improvement Corporation Financial Report',ssUrlPrefix + 'citygovernment/financial/reports/civicimprovement/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_10=g_navNode_7.addNode('129','Other Government Agencies',ssUrlPrefix + 'citygovernment/agencies/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Other Government Agencies','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_11=g_navNode_7.addNode('130','Media Center',ssUrlPrefix + 'citygovernment/mediacenter/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Media Center','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_11_0=g_navNode_7_11.addNode('319','News',ssUrlPrefix + 'citygovernment/mediacenter/news/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_11_1=g_navNode_7_11.addNode('320','Media Resources',ssUrlPrefix + 'citygovernment/mediacenter/mediaresources/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_11_2=g_navNode_7_11.addNode('321','City Newsletters',ssUrlPrefix + 'citygovernment/mediacenter/newsletters/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_12=g_navNode_7.addNode('131','Planning Our Future',ssUrlPrefix + 'citygovernment/planres/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Planning Our Future','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_12_0=g_navNode_7_12.addNode('656','City Planning',ssUrlPrefix + 'citygovernment/planres/cityplan/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_12_0_0=g_navNode_7_12_0.addNode('657','PlanPHX',ssUrlPrefix + 'citygovernment/planres/cityplan/planphx/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region15');
g_navNode_7_12_0_0_0=g_navNode_7_12_0_0.addNode('658','Big Questions',ssUrlPrefix + 'citygovernment/planres/cityplan/planphx/questions/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region15');
g_navNode_7_12_0_0_1=g_navNode_7_12_0_0.addNode('659','Our Focus',ssUrlPrefix + 'citygovernment/planres/cityplan/planphx/ourfocus/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region15');
g_navNode_7_12_0_0_1_0=g_navNode_7_12_0_0_1.addNode('661','Community',ssUrlPrefix + 'citygovernment/planres/cityplan/planphx/ourfocus/community/index.html','ChooseTitleBarStyle==plum','PlanPHXThemeStyle==community','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region15');
g_navNode_7_12_0_0_1_1=g_navNode_7_12_0_0_1.addNode('662','Economy',ssUrlPrefix + 'citygovernment/planres/cityplan/planphx/ourfocus/economy/index.html','ChooseTitleBarStyle==plum','PlanPHXThemeStyle==economy','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region15');
g_navNode_7_12_0_0_1_2=g_navNode_7_12_0_0_1.addNode('663','Environment',ssUrlPrefix + 'citygovernment/planres/cityplan/planphx/ourfocus/environment/index.html','ChooseTitleBarStyle==plum','PlanPHXThemeStyle==environment','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region15');
g_navNode_7_12_0_0_1_2_0=g_navNode_7_12_0_0_1_2.addNode('720','Air Quality',ssUrlPrefix + 'citygovernment/planres/cityplan/planphx/ourfocus/environment/airquality/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE');
g_navNode_7_12_0_0_1_2_1=g_navNode_7_12_0_0_1_2.addNode('721','Sustainable Housing',ssUrlPrefix + 'citygovernment/planres/cityplan/planphx/ourfocus/environment/housing/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region15');
g_navNode_7_12_0_0_1_2_2=g_navNode_7_12_0_0_1_2.addNode('722','Recycling and Waste Reduction',ssUrlPrefix + 'citygovernment/planres/cityplan/planphx/ourfocus/environment/recycling/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region15');
g_navNode_7_12_0_0_1_2_3=g_navNode_7_12_0_0_1_2.addNode('723','Clean Water',ssUrlPrefix + 'citygovernment/planres/cityplan/planphx/ourfocus/environment/cleanwater/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region15');
g_navNode_7_12_0_0_1_2_4=g_navNode_7_12_0_0_1_2.addNode('724','Solar Energy Alternatives',ssUrlPrefix + 'citygovernment/planres/cityplan/planphx/ourfocus/environment/solarenergy/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region15');
g_navNode_7_12_0_0_1_3=g_navNode_7_12_0_0_1.addNode('664','Infrastructure',ssUrlPrefix + 'citygovernment/planres/cityplan/planphx/ourfocus/infrastructure/index.html','ChooseTitleBarStyle==plum','PlanPHXThemeStyle==infrastructure','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region15');
g_navNode_7_12_0_0_2=g_navNode_7_12_0_0.addNode('1537','What\'s New',ssUrlPrefix + 'citygovernment/planres/cityplan/planphx/whatsnew/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region15');
g_navNode_7_12_0_0_3=g_navNode_7_12_0_0.addNode('719','Calendar',ssUrlPrefix + 'citygovernment/planres/cityplan/planphx/events/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region15');
g_navNode_7_12_0_0_4=g_navNode_7_12_0_0.addNode('1538','Resource Library',ssUrlPrefix + 'citygovernment/planres/cityplan/planphx/library/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region15');
g_navNode_7_12_0_0_5=g_navNode_7_12_0_0.addNode('660','Contact PlanPHX',ssUrlPrefix + 'citygovernment/planres/cityplan/planphx/emplanphx/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region15');
g_navNode_7_12_0_1=g_navNode_7_12_0.addNode('740','Geographic Areas Plans',ssUrlPrefix + 'citygovernment/planres/cityplan/geoplans/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_12_0_2=g_navNode_7_12_0.addNode('741','Recreational Plans',ssUrlPrefix + 'citygovernment/planres/cityplan/recplans/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_12_0_3=g_navNode_7_12_0.addNode('742','Transportation Plans',ssUrlPrefix + 'citygovernment/planres/cityplan/transplans/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_12_0_4=g_navNode_7_12_0.addNode('743','Public Safety Plans',ssUrlPrefix + 'citygovernment/planres/cityplan/pubsafeplans/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_13=g_navNode_7.addNode('146','Awards \x26 Recognition',ssUrlPrefix + 'citygovernment/awards/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Awards \x26 Recognition','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_14=g_navNode_7.addNode('147','Surveys',ssUrlPrefix + 'citygovernment/surveys/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Surveys','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_7_14_0=g_navNode_7_14.addNode('318','You Count\x21',ssUrlPrefix + 'citygovernment/surveys/youcount/index.htm','secondaryUrlVariableField==region9');
g_navNode_7_15=g_navNode_7.addNode('148','Phoenix Facts',ssUrlPrefix + 'citygovernment/facts/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Phoenix Facts','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_8=g_navNode_Root.addNode('28','Employment',ssUrlPrefix + 'employment/index.html','ChooseTitleBarStyle==Plum','PageTitleBarText==Employment','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_8_0=g_navNode_8.addNode('132','How to Get a City Job',ssUrlPrefix + 'employment/getjob/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==How to Get a City Job','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_8_2=g_navNode_8.addNode('136','Internship Opportunities',ssUrlPrefix + 'employment/intern/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Internship Opportunities','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_8_2_0=g_navNode_8_2.addNode('398','Management Intern Program',ssUrlPrefix + 'employment/intern/programs/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','secondaryUrlVariableField==region9');
g_navNode_8_3=g_navNode_8.addNode('137','Job Descriptions \x26 Pay Ranges',ssUrlPrefix + 'employment/descrip/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Job Descriptions \x26 Pay Ranges','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_8_4=g_navNode_8.addNode('138','City Benefits',ssUrlPrefix + 'employment/benefits/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==City Benefits','ShowAlert==TRUE','ShowDateTime==TRUE','secondaryUrlVariableField==region9');
g_navNode_8_5=g_navNode_8.addNode('139','Resources for Job-seekers',ssUrlPrefix + 'employment/jobresource/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Resources for Job-seekers','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_8_5_0=g_navNode_8_5.addNode('459','Job Search',ssUrlPrefix + 'employment/jobresource/jobsearch/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9=g_navNode_Root.addNode('29','Environment \x26 Sustainability',ssUrlPrefix + 'greenphoenix/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Environment \x26 Sustainability','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_0=g_navNode_9.addNode('852','Green Phoenix',ssUrlPrefix + 'greenphoenix/greenphx/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_0_0=g_navNode_9_0.addNode('853','Greener Neighborhoods',ssUrlPrefix + 'greenphoenix/greenphx/neighborhoods/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_0_1=g_navNode_9_0.addNode('854','Solar City',ssUrlPrefix + 'greenphoenix/greenphx/solarcity/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_0_2=g_navNode_9_0.addNode('855','Greening Homes and Businesses',ssUrlPrefix + 'greenphoenix/greenphx/homesandbusinesses/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_0_3=g_navNode_9_0.addNode('856','Public Buildings',ssUrlPrefix + 'greenphoenix/greenphx/buildings/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_0_4=g_navNode_9_0.addNode('857','Renewable Energy',ssUrlPrefix + 'greenphoenix/greenphx/renewable/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_0_5=g_navNode_9_0.addNode('858','Efficient City Lights',ssUrlPrefix + 'greenphoenix/greenphx/lights/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_0_6=g_navNode_9_0.addNode('859','Green Rail Corridor Demonstration Project',ssUrlPrefix + 'greenphoenix/greenphx/rail/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_0_7=g_navNode_9_0.addNode('860','Green Learning Campus',ssUrlPrefix + 'greenphoenix/greenphx/learning/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_1=g_navNode_9.addNode('65','Sustainability Program',ssUrlPrefix + 'greenphoenix/sustainability/index.html','ChooseTitleBarStyle==palo verde','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_1_0=g_navNode_9_1.addNode('447','Summary',ssUrlPrefix + 'greenphoenix/sustainability/summary/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_1_1=g_navNode_9_1.addNode('492','Contact Comments',ssUrlPrefix + 'greenphoenix/sustainability/emsustainability/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_2=g_navNode_9.addNode('140','Air Quality',ssUrlPrefix + 'greenphoenix/air/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Air','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_3=g_navNode_9.addNode('1156','Climate Change',ssUrlPrefix + 'greenphoenix/climate/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_3_0=g_navNode_9_3.addNode('1363','Climate Action Plan for City Operations',ssUrlPrefix + 'greenphoenix/climate/actionplan/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_3_1=g_navNode_9_3.addNode('1364','Greenhouse Gas Emissions from City Operations',ssUrlPrefix + 'greenphoenix/climate/emissions/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_3_2=g_navNode_9_3.addNode('1365','Adapting to Climate Change',ssUrlPrefix + 'greenphoenix/climate/adapting/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_4=g_navNode_9.addNode('141','Water Quality',ssUrlPrefix + 'greenphoenix/water/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Water','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_5=g_navNode_9.addNode('142','Land Stewardship',ssUrlPrefix + 'greenphoenix/land/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Land','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_5_0=g_navNode_9_5.addNode('512','Brownfields Land Recycling Program',ssUrlPrefix + 'greenphoenix/land/brownfields/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_5_0_0=g_navNode_9_5_0.addNode('513','Program Description',ssUrlPrefix + 'greenphoenix/land/brownfields/program/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_5_0_1=g_navNode_9_5_0.addNode('514','What\'s New With Brownfields',ssUrlPrefix + 'greenphoenix/land/brownfields/whatsnew/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_5_0_2=g_navNode_9_5_0.addNode('515','Financial Assistance',ssUrlPrefix + 'greenphoenix/land/brownfields/financial/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_5_0_3=g_navNode_9_5_0.addNode('517','Newsletter',ssUrlPrefix + 'greenphoenix/land/brownfields/newsletter/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_5_0_4=g_navNode_9_5_0.addNode('518','Events',ssUrlPrefix + 'greenphoenix/land/brownfields/events/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_5_0_5=g_navNode_9_5_0.addNode('519','Projects',ssUrlPrefix + 'greenphoenix/land/brownfields/projects/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_5_0_6=g_navNode_9_5_0.addNode('520','Service Providers',ssUrlPrefix + 'greenphoenix/land/brownfields/providers/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_5_0_7=g_navNode_9_5_0.addNode('522','Frequently Asked Questions',ssUrlPrefix + 'greenphoenix/land/brownfields/faqs/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_5_0_8=g_navNode_9_5_0.addNode('524','More on the Web',ssUrlPrefix + 'greenphoenix/land/brownfields/more/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_5_0_9=g_navNode_9_5_0.addNode('523','Contact Brownfields Staff',ssUrlPrefix + 'greenphoenix/land/brownfields/contact/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_5_0_9_0=g_navNode_9_5_0_9.addNode('526','E-mail for Donn Stoltzfus',ssUrlPrefix + 'greenphoenix/land/brownfields/contact/emstoltzfus/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_5_0_9_1=g_navNode_9_5_0_9.addNode('527','E-mail for Rosanne Albright',ssUrlPrefix + 'greenphoenix/land/brownfields/contact/emrsanchz/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_5_0_10=g_navNode_9_5_0.addNode('1849','Subscribe to Brownfields Electronic Mailing List',ssUrlPrefix + 'greenphoenix/land/brownfields/subscribe/index.html','ShowWeather==FALSE','secondaryUrlVariableField==region9');
g_navNode_9_6=g_navNode_9.addNode('143','Pollution Prevention \x28P2\x29',ssUrlPrefix + 'greenphoenix/resenvpolplans/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Pollution Prevention','ShowAlert==TRUE','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_7=g_navNode_9.addNode('445','Environmentally Preferable Purchasing \x28EPP\x29',ssUrlPrefix + 'greenphoenix/epp/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_7_0=g_navNode_9_7.addNode('152','Videos',ssUrlPrefix + 'greenphoenix/epp/videos/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_7_1=g_navNode_9_7.addNode('455','EPP Purchasing',ssUrlPrefix + 'greenphoenix/epp/purchasing/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_7_1_0=g_navNode_9_7_1.addNode('456','Building Materials \x26 Supplies',ssUrlPrefix + 'greenphoenix/epp/purchasing/buildingmaterials/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_7_1_0_0=g_navNode_9_7_1_0.addNode('464','Adhesives',ssUrlPrefix + 'greenphoenix/epp/purchasing/buildingmaterials/adhesives/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_7_1_0_1=g_navNode_9_7_1_0.addNode('465','Brick/Blocks',ssUrlPrefix + 'greenphoenix/epp/purchasing/buildingmaterials/bricks/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_7_1_0_2=g_navNode_9_7_1_0.addNode('461','Carpet',ssUrlPrefix + 'greenphoenix/epp/purchasing/buildingmaterials/carpet/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_7_1_0_3=g_navNode_9_7_1_0.addNode('457','Concrete/Cement',ssUrlPrefix + 'greenphoenix/epp/purchasing/buildingmaterials/concrete/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_7_1_0_3_0=g_navNode_9_7_1_0_3.addNode('467','Concrete and Cement containing Recovered Materials',ssUrlPrefix + 'greenphoenix/epp/purchasing/buildingmaterials/concrete/recovered/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_7_1_0_3_1=g_navNode_9_7_1_0_3.addNode('468','Pervious Concrete',ssUrlPrefix + 'greenphoenix/epp/purchasing/buildingmaterials/concrete/pervious/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_7_1_0_4=g_navNode_9_7_1_0.addNode('466','Lumber and Wood Products',ssUrlPrefix + 'greenphoenix/epp/purchasing/buildingmaterials/lumber/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_7_1_0_5=g_navNode_9_7_1_0.addNode('462','Paint Products',ssUrlPrefix + 'greenphoenix/epp/purchasing/buildingmaterials/paintproducts/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_7_1_0_6=g_navNode_9_7_1_0.addNode('463','Roofing Materials',ssUrlPrefix + 'greenphoenix/epp/purchasing/buildingmaterials/roofing/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_7_1_1=g_navNode_9_7_1.addNode('458','Fleets/Equipment/Aircraft',ssUrlPrefix + 'greenphoenix/epp/purchasing/fleets/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_7_1_1_0=g_navNode_9_7_1_1.addNode('553','Re-Refined Motor Oil',ssUrlPrefix + 'greenphoenix/epp/purchasing/fleets/motoroil/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_7_1_1_1=g_navNode_9_7_1_1.addNode('699','Fuel',ssUrlPrefix + 'greenphoenix/epp/purchasing/fleets/fuel/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_7_1_1_2=g_navNode_9_7_1_1.addNode('554','Tires',ssUrlPrefix + 'greenphoenix/epp/purchasing/fleets/tires/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_7_1_1_3=g_navNode_9_7_1_1.addNode('700','Vehicles',ssUrlPrefix + 'greenphoenix/epp/purchasing/fleets/vehicles/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_7_1_1_4=g_navNode_9_7_1_1.addNode('701','Vehicle Maintenance \x26 Repair',ssUrlPrefix + 'greenphoenix/epp/purchasing/fleets/vehiclerepair/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_7_1_1_5=g_navNode_9_7_1_1.addNode('702','Engine Parts',ssUrlPrefix + 'greenphoenix/epp/purchasing/fleets/engineparts/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_7_1_2=g_navNode_9_7_1.addNode('703','Office Equipment/Lighting/Furniture',ssUrlPrefix + 'greenphoenix/epp/purchasing/office/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_7_1_2_0=g_navNode_9_7_1_2.addNode('708','Computer hardware',ssUrlPrefix + 'greenphoenix/epp/purchasing/office/computer/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_7_1_2_1=g_navNode_9_7_1_2.addNode('709','Copiers/Printers/Scanners/Fax',ssUrlPrefix + 'greenphoenix/epp/purchasing/office/copiers/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_7_1_2_2=g_navNode_9_7_1_2.addNode('710','Furniture',ssUrlPrefix + 'greenphoenix/epp/purchasing/office/furniture/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_7_1_2_3=g_navNode_9_7_1_2.addNode('711','Lamps/Fixtures',ssUrlPrefix + 'greenphoenix/epp/purchasing/office/lamps/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_7_1_3=g_navNode_9_7_1.addNode('704','Building Fixtures and Equipment',ssUrlPrefix + 'greenphoenix/epp/purchasing/building/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_7_1_3_0=g_navNode_9_7_1_3.addNode('712','Heating, Ventilation and Cooling',ssUrlPrefix + 'greenphoenix/epp/purchasing/building/heating/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_7_1_3_1=g_navNode_9_7_1_3.addNode('713','Plumbing Equipment/Supplies',ssUrlPrefix + 'greenphoenix/epp/purchasing/building/plumbing/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_7_1_4=g_navNode_9_7_1.addNode('705','Appliances',ssUrlPrefix + 'greenphoenix/epp/purchasing/appliances/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_7_1_5=g_navNode_9_7_1.addNode('706','Cleaning/Janitorial',ssUrlPrefix + 'greenphoenix/epp/purchasing/cleaning/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_7_1_5_0=g_navNode_9_7_1_5.addNode('714','Custodial Supplies \x26 Services',ssUrlPrefix + 'greenphoenix/epp/purchasing/cleaning/supplies/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_7_1_5_1=g_navNode_9_7_1_5.addNode('715','Cleaning Liquids',ssUrlPrefix + 'greenphoenix/epp/purchasing/cleaning/liquids/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_7_1_5_2=g_navNode_9_7_1_5.addNode('716','Paper Products',ssUrlPrefix + 'greenphoenix/epp/purchasing/cleaning/paper/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_7_1_5_3=g_navNode_9_7_1_5.addNode('717','Solvents/Graffiti Remover',ssUrlPrefix + 'greenphoenix/epp/purchasing/cleaning/solvents/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_7_1_5_4=g_navNode_9_7_1_5.addNode('718','Plastic Bags',ssUrlPrefix + 'greenphoenix/epp/purchasing/cleaning/plasticbags/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_7_1_6=g_navNode_9_7_1.addNode('707','Pesticides',ssUrlPrefix + 'greenphoenix/epp/purchasing/pesticides/index.html','ChooseTitleBarStyle==plum','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_7_2=g_navNode_9_7.addNode('453','Water Conservation',ssUrlPrefix + 'greenphoenix/epp/water/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_9_8=g_navNode_9.addNode('144','Environmental Awareness',ssUrlPrefix + 'greenphoenix/resenvawarecons/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Awareness','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_9_9=g_navNode_9.addNode('145','Additional Resources',ssUrlPrefix + 'greenphoenix/resenvaddphone/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Additional Resources','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_10=g_navNode_Root.addNode('51','News',ssUrlPrefix + 'news/index.html','ChooseColor==\x23000080','ChooseTitleBarStyle==plum','PageTitleBarText==News','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9','xmlQueryText==dDocType \x3cmatches\x3e \x60News_Release\x60  \x3cAND\x3e  \x3cNOT\x3e \x28dDocAccount \x3csubstring\x3e \x60INTER/NEWSREL/DIST\x60\x29  \x3cAND\x3e \x3cNOT\x3e \x28dDocAccount \x3cmatches\x3e \x60INTER/NEWSREL/AVI\x60\x29 \x3cAND\x3e \x3cNOT\x3e \x28dDocAccount \x3cmatches\x3e \x60INTER/NEWSREL/POLICE/GOODNEWS\x60\x29 \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60PHX\x60 \x3cAND\x3e  xDocRefDate \x3e\x3d \x60\x3c\x24dateCurrent\x28-7\x29\x24\x3e\x60');
g_navNode_10_0=g_navNode_10.addNode('393','Mayor News Releases',ssUrlPrefix + 'news/mayor/index.html','ChooseTitleBarStyle==Red Rock','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_10_1=g_navNode_10.addNode('263','District 1 News Releases',ssUrlPrefix + 'news/district1/index.html','ChooseTitleBarStyle==Lake Blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_10_2=g_navNode_10.addNode('265','District 2 News Releases',ssUrlPrefix + 'news/district2/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_10_3=g_navNode_10.addNode('269','District 3 News Releases',ssUrlPrefix + 'news/district3/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_10_4=g_navNode_10.addNode('272','District 4 News Releases',ssUrlPrefix + 'news/district4/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_10_5=g_navNode_10.addNode('285','District 5 News Releases',ssUrlPrefix + 'news/district5/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_10_6=g_navNode_10.addNode('292','District 6 News Releases',ssUrlPrefix + 'news/district6/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_10_7=g_navNode_10.addNode('310','District 7 News Releases',ssUrlPrefix + 'news/district7/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_10_8=g_navNode_10.addNode('302','District 8 News Releases',ssUrlPrefix + 'news/district8/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_10_9=g_navNode_10.addNode('50','rss',ssUrlPrefix + 'news/rss/index.html','ShowDateTime==false','xmlQueryText==dDocType \x3cmatches\x3e \x60News_Release\x60  \x3cAND\x3e  \x3cNOT\x3e \x28dDocAccount \x3csubstring\x3e \x60INTER/NEWSREL/DIST\x60\x29  \x3cAND\x3e \x3cNOT\x3e \x28dDocAccount \x3cmatches\x3e \x60INTER/NEWSREL/AVI\x60\x29 \x3cAND\x3e \x3cNOT\x3e \x28dDocAccount \x3cmatches\x3e \x60INTER/NEWSREL/POLICE/GOODNEWS\x60\x29 \x3cAND\x3e \x3cNOT\x3e \x28dDocAccount \x3cmatches\x3e \x60INTER/NEWSREL/POLICE/BREAKNEWS\x60\x29 \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60PHX\x60 \x3cAND\x3e  xDocRefDate \x3e\x3d \x60\x3c\x24dateCurrent\x28-7\x29\x24\x3e\x60');
g_navNode_10_10=g_navNode_10.addNode('312','Aviation News Releases',ssUrlPrefix + 'news/aviation/index.html','ChooseTitleBarStyle==Royal Blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_10_10_0=g_navNode_10_10.addNode('533','rss',ssUrlPrefix + 'news/aviation/rss/index.html','ShowAlert==FALSE','ShowDateTime==FALSE','ShowWeather==FALSE','xmlQueryText==dDocType \x3cmatches\x3e \x60News_Release\x60  \x3cAND\x3e  dDocAccount \x3cmatches\x3e \x60INTER/NEWSREL/AVI\x60 \x3cAND\x3e  xDocRefDate \x3e\x3d \x60\x3c\x24dateCurrent\x28-7\x29\x24\x3e\x60');
g_navNode_10_11=g_navNode_10.addNode('346','News Releases Archives',ssUrlPrefix + 'news/archives/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_10_12=g_navNode_10.addNode('55','News from Phoenix Police',ssUrlPrefix + 'news/policebreakingnews/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_10_12_0=g_navNode_10_12.addNode('56','rss',ssUrlPrefix + 'news/policebreakingnews/rss/index.html','xmlQueryText==dDocType \x3cmatches\x3e \x60News_Release\x60  \x3cAND\x3e  dDocAccount \x3cmatches\x3e \x60INTER/NEWSREL/POLICE/BREAKNEWS\x60 \x3cAND\x3e  xDocRefDate \x3e\x3d \x60\x3c\x24dateCurrent\x28-7\x29\x24\x3e\x60');
g_navNode_10_12_1=g_navNode_10_12.addNode('558','Police Article Survey',ssUrlPrefix + 'news/policebreakingnews/pdnewssurvey/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_10_13=g_navNode_10.addNode('1073','Parks \x26 Recreation News Releases',ssUrlPrefix + 'news/parksnews/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_10_13_0=g_navNode_10_13.addNode('1074','rss',ssUrlPrefix + 'news/parksnews/rss/index.html','xmlQueryText==dDocType \x3cmatches\x3e \x60News_Release\x60  \x3cAND\x3e  dDocAccount \x3cmatches\x3e \x60INTER/NEWSREL/PARKS\x60 \x3cAND\x3e  xDocRefDate \x3e\x3d \x60\x3c\x24dateCurrent\x28-7\x29\x24\x3e\x60');
g_navNode_11=g_navNode_Root.addNode('17','Mayor/City Council',ssUrlPrefix + 'mayorcouncil/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==Mayor \x26 City Council','ShowAlert==true','ShowDateTime==true','UseInGrayNav==TRUE','secondaryUrlVariableField==region9');
g_navNode_11_0=g_navNode_11.addNode('DistrictMaps','Phoenix City Council District Maps',ssUrlPrefix + 'mayorcouncil/districtmap/index.html','ChooseTitleBarStyle==plum','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_11_1=g_navNode_11.addNode('About','About the Phoenix City Council',ssUrlPrefix + 'mayorcouncil/about/index.html','ChooseTitleBarStyle==plum','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_11_2=g_navNode_11.addNode('CouncilMeet','Council Meetings',ssUrlPrefix + 'mayorcouncil/councilmeet/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_11_2_0=g_navNode_11_2.addNode('314','Public Meetings',ssUrlPrefix + 'mayorcouncil/councilmeet/publicmeetings/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_11_2_1=g_navNode_11_2.addNode('315','City Council Meetings',ssUrlPrefix + 'mayorcouncil/councilmeet/citycouncilmeetings/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_12=g_navNode_Root.addNode('390','Mayor\'s Office',ssUrlPrefix + 'mayor/index.html','ChooseCouncilThemeStyle==Sun Flower','ChooseTitleBarStyle==Red Rock','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_12_0=g_navNode_12.addNode('395','Media Center',ssUrlPrefix + 'mayor/media/index.html','ChooseTitleBarStyle==Red Rock','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_12_0_0=g_navNode_12_0.addNode('392','News Articles',ssUrlPrefix + 'mayor/media/articles/index.html','ChooseTitleBarStyle==Red Rock','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_12_0_1=g_navNode_12_0.addNode('394','Speeches',ssUrlPrefix + 'mayor/media/speeches/index.html','ChooseTitleBarStyle==Red Rock','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_12_0_2=g_navNode_12_0.addNode('396','Photo Gallery',ssUrlPrefix + 'mayor/media/photo/index.html','ChooseTitleBarStyle==Red Rock','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_12_1=g_navNode_12.addNode('403','Upcoming Events',ssUrlPrefix + 'mayor/events/index.html','ChooseTitleBarStyle==Red Rock','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_12_2=g_navNode_12.addNode('401','Contact Mayor Gordon',ssUrlPrefix + 'mayor/emmayor/index.html','ChooseTitleBarStyle==Red Rock','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_12_3=g_navNode_12.addNode('402','Scheduling Request Form',ssUrlPrefix + 'mayor/appmayor/index.html','ChooseTitleBarStyle==Red Rock','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_12_4=g_navNode_12.addNode('112','Mailling Lists',ssUrlPrefix + 'mayor/subscriptions/index.html','ChooseTitleBarStyle==Red Rock','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_12_5=g_navNode_12.addNode('134','Contact Natalie Wilson',ssUrlPrefix + 'mayor/emnwilson/index.html','ChooseTitleBarStyle==Red Rock','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_12_6=g_navNode_12.addNode('411','Contact Bill Scheel',ssUrlPrefix + 'mayor/embscheel/index.html','ChooseTitleBarStyle==Red Rock','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_12_7=g_navNode_12.addNode('412','Contact Marchelle Franklin',ssUrlPrefix + 'mayor/emmfranklin/index.html','ChooseTitleBarStyle==Red Rock','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_12_8=g_navNode_12.addNode('414','Contact Gerardo Higginson',ssUrlPrefix + 'mayor/emghigginson/index.html','ChooseTitleBarStyle==Red Rock','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_12_9=g_navNode_12.addNode('416','Contact Kelly Dalton',ssUrlPrefix + 'mayor/emkdalton/index.html','ChooseTitleBarStyle==Red Rock','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_12_10=g_navNode_12.addNode('417','Contact Ryan Burke',ssUrlPrefix + 'mayor/emrburke/index.html','ChooseTitleBarStyle==Red Rock','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_12_11=g_navNode_12.addNode('419','Contact Tiffany Torres',ssUrlPrefix + 'mayor/emttorres/index.html','ChooseTitleBarStyle==Red Rock','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_12_12=g_navNode_12.addNode('420','Contact Jessika Rodriguez',ssUrlPrefix + 'mayor/emjrodriguez/index.html','ChooseTitleBarStyle==Red Rock','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_12_13=g_navNode_12.addNode('422','Contact Cindy Salazar',ssUrlPrefix + 'mayor/emcsalazar/index.html','ChooseTitleBarStyle==Red Rock','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_12_14=g_navNode_12.addNode('423','Contact Judy Bernas',ssUrlPrefix + 'mayor/emjbernas/index.html','ChooseTitleBarStyle==Red Rock','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_12_15=g_navNode_12.addNode('634','Contact Sasha Perez',ssUrlPrefix + 'mayor/emsperez/index.html','ChooseTitleBarStyle==Red Rock','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_13=g_navNode_Root.addNode('246','District 1',ssUrlPrefix + 'district1/index.html','ChooseCouncilThemeStyle==Plum','ChooseTitleBarStyle==Lake Blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_13_0=g_navNode_13.addNode('326','Photo Gallery',ssUrlPrefix + 'district1/d1photo/index.html','ChooseTitleBarStyle==Lake Blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_13_1=g_navNode_13.addNode('247','News from District 1',ssUrlPrefix + 'district1/news/index.html','ChooseTitleBarStyle==Lake Blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_13_2=g_navNode_13.addNode('248','Events/Meetings',ssUrlPrefix + 'district1/events/index.html','ChooseTitleBarStyle==Lake Blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_13_3=g_navNode_13.addNode('382','Email for District 1',ssUrlPrefix + 'district1/emdist1/index.html','ChooseTitleBarStyle==Lake Blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_14=g_navNode_Root.addNode('249','District 2',ssUrlPrefix + 'district2/index.html','ChooseCouncilThemeStyle==Royal Blue','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_14_0=g_navNode_14.addNode('325','District 2 Photo Gallery',ssUrlPrefix + 'district2/d2photo/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_14_1=g_navNode_14.addNode('250','News from District 2',ssUrlPrefix + 'district2/news/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_14_1_0=g_navNode_14_1.addNode('266','D2 Articles \x26 Columns',ssUrlPrefix + 'district2/news/articles/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_14_2=g_navNode_14.addNode('251','Upcoming Events',ssUrlPrefix + 'district2/events/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_14_3=g_navNode_14.addNode('383','Email for District 2',ssUrlPrefix + 'district2/emdist2/index.html','ChooseTitleBarStyle==Plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_15=g_navNode_Root.addNode('252','District 3',ssUrlPrefix + 'district3/index.html','ChooseCouncilThemeStyle==Royal Blue','ChooseTitleBarStyle==Plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_15_0=g_navNode_15.addNode('327','Photo Gallery',ssUrlPrefix + 'district3/d3photo/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_15_1=g_navNode_15.addNode('253','News from District 3',ssUrlPrefix + 'district3/news/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_15_1_0=g_navNode_15_1.addNode('270','Features Columns',ssUrlPrefix + 'district3/news/columns/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_15_2=g_navNode_15.addNode('254','Events/Meetings',ssUrlPrefix + 'district3/events/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_15_3=g_navNode_15.addNode('384','Email for District 3',ssUrlPrefix + 'district3/emdist3/index.html','ChooseTitleBarStyle==Plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_16=g_navNode_Root.addNode('63','District 4',ssUrlPrefix + 'district4/index.html','ChooseCouncilThemeStyle==saguaro','ChooseTitleBarStyle==Plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_16_0=g_navNode_16.addNode('328','Photo Gallery',ssUrlPrefix + 'district4/d4photo/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_16_1=g_navNode_16.addNode('271','News from District 4',ssUrlPrefix + 'district4/news/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_16_1_0=g_navNode_16_1.addNode('273','Arizona Republic Column',ssUrlPrefix + 'district4/news/azr/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_16_1_1=g_navNode_16_1.addNode('274','North Central News Column',ssUrlPrefix + 'district4/news/ncn/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_16_1_2=g_navNode_16_1.addNode('275','Neighborhood News Council Corner',ssUrlPrefix + 'district4/news/nncc/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_16_2=g_navNode_16.addNode('256','Events/Meetings',ssUrlPrefix + 'district4/events/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_16_3=g_navNode_16.addNode('385','Email for District 4',ssUrlPrefix + 'district4/emdist4/index.html','ChooseTitleBarStyle==Plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_17=g_navNode_Root.addNode('64','District 5',ssUrlPrefix + 'district5/index.html','ChooseCouncilThemeStyle==Palo Verde','ChooseTitleBarStyle==Plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_17_0=g_navNode_17.addNode('329','Photo Gallery',ssUrlPrefix + 'district5/d5photo/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_17_1=g_navNode_17.addNode('257','News from District 5',ssUrlPrefix + 'district5/news/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_17_1_0=g_navNode_17_1.addNode('286','Arizona Republic Column',ssUrlPrefix + 'district5/news/azr/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_17_1_1=g_navNode_17_1.addNode('287','Business Journal Column',ssUrlPrefix + 'district5/news/busjrnl/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_17_1_2=g_navNode_17_1.addNode('288','Monthly Column',ssUrlPrefix + 'district5/news/mc/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_17_1_3=g_navNode_17_1.addNode('289','Neighborhood News Council Corner',ssUrlPrefix + 'district5/news/nncc/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_17_2=g_navNode_17.addNode('258','Events/Meetings',ssUrlPrefix + 'district5/events/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_17_3=g_navNode_17.addNode('259','Planning/Zoning',ssUrlPrefix + 'district5/planning/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_17_4=g_navNode_17.addNode('386','Email for District 5',ssUrlPrefix + 'district5/emdist5/index.html','ChooseTitleBarStyle==Plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_18=g_navNode_Root.addNode('243','District 6',ssUrlPrefix + 'district6/index.html','ChooseCouncilThemeStyle==Lake Blue','ChooseTitleBarStyle==Plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_18_0=g_navNode_18.addNode('324','District 6 Photo Gallery',ssUrlPrefix + 'district6/d6photo/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_18_1=g_navNode_18.addNode('244','News from District 6',ssUrlPrefix + 'district6/news/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_18_1_0=g_navNode_18_1.addNode('293','Arizona Republic Column',ssUrlPrefix + 'district6/news/azr/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_18_1_1=g_navNode_18_1.addNode('294','Ahwatukee Foothills News Column',ssUrlPrefix + 'district6/news/afhn/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_18_1_2=g_navNode_18_1.addNode('295','Arcadia News Column',ssUrlPrefix + 'district6/news/arcadia/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_18_1_3=g_navNode_18_1.addNode('296','Business Journal Column',ssUrlPrefix + 'district6/news/busjrnl/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_18_1_4=g_navNode_18_1.addNode('61','Featured Columns',ssUrlPrefix + 'district6/news/columns/index.html','ChooseTitleBarStyle==plum','secondaryUrlVariableField==region9');
g_navNode_18_1_5=g_navNode_18_1.addNode('297','North Central News Column',ssUrlPrefix + 'district6/news/ncn/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_18_1_6=g_navNode_18_1.addNode('298','Neighborhood News Council Corner',ssUrlPrefix + 'district6/news/nncc/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_18_1_7=g_navNode_18_1.addNode('299','Other Articles',ssUrlPrefix + 'district6/news/other/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_18_2=g_navNode_18.addNode('245','Calendar',ssUrlPrefix + 'district6/events/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_18_3=g_navNode_18.addNode('387','Email for District 6',ssUrlPrefix + 'district6/emdist6/index.html','ChooseTitleBarStyle==Plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_19=g_navNode_Root.addNode('122','District 7',ssUrlPrefix + 'district7/index.html','ChooseCouncilThemeStyle==Royal Blue','ChooseTitleBarStyle==Plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_19_0=g_navNode_19.addNode('330','Photo Gallery',ssUrlPrefix + 'district7/d7photo/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_19_1=g_navNode_19.addNode('260','News for District 7',ssUrlPrefix + 'district7/news/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_19_1_0=g_navNode_19_1.addNode('311','Columns',ssUrlPrefix + 'district7/news/columns/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_19_2=g_navNode_19.addNode('388','Email for District 7',ssUrlPrefix + 'district7/emdist7/index.html','ChooseTitleBarStyle==Plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_20=g_navNode_Root.addNode('133','District 8',ssUrlPrefix + 'district8/index.html','ChooseCouncilThemeStyle==saguaro','ChooseTitleBarStyle==Plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_20_0=g_navNode_20.addNode('331','Photo Gallery',ssUrlPrefix + 'district8/d8photo/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_20_1=g_navNode_20.addNode('261','News from District 8',ssUrlPrefix + 'district8/news/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_20_1_0=g_navNode_20_1.addNode('301','Newsletters',ssUrlPrefix + 'district8/news/newsletter/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_20_1_1=g_navNode_20_1.addNode('303','Arizona Informant Column',ssUrlPrefix + 'district8/news/azinf/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_20_1_2=g_navNode_20_1.addNode('304','Neighborhood News Council Corner',ssUrlPrefix + 'district8/news/nncc/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_20_1_3=g_navNode_20_1.addNode('305','Other Articles',ssUrlPrefix + 'district8/news/other/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_20_2=g_navNode_20.addNode('262','Events/Meetings',ssUrlPrefix + 'district8/events/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_20_3=g_navNode_20.addNode('389','Email for District 8',ssUrlPrefix + 'district8/emdist8/index.html','ChooseTitleBarStyle==Plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_21=g_navNode_Root.addNode('313','Departments',ssUrlPrefix + 'departments/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_22=g_navNode_Root.addNode('333','City Council Office',ssUrlPrefix + 'citycouncil/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_23=g_navNode_Root.addNode('334','City Manager\'s Office',ssUrlPrefix + 'citymanager/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_23_0=g_navNode_23.addNode('336','Executive Team',ssUrlPrefix + 'citymanager/executiveteam/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_24=g_navNode_Root.addNode('437','CED',ssUrlPrefix + 'econdev/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_24_0=g_navNode_24.addNode('438','Phoenix Workforce Connection',ssUrlPrefix + 'econdev/phxwc/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_24_0_0=g_navNode_24_0.addNode('439','Job Seekers',ssUrlPrefix + 'econdev/phxwc/jobseekers/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_24_0_1=g_navNode_24_0.addNode('440','Businesses',ssUrlPrefix + 'econdev/phxwc/businesses/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_24_0_2=g_navNode_24_0.addNode('441','Youth Development',ssUrlPrefix + 'econdev/phxwc/youth/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_24_0_2_0=g_navNode_24_0_2.addNode('165','Contact WFC Youth Services',ssUrlPrefix + 'econdev/phxwc/youth/emphxwcyouth/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_24_0_3=g_navNode_24_0.addNode('442','Onestop Centers',ssUrlPrefix + 'econdev/phxwc/centers/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_24_0_4=g_navNode_24_0.addNode('443','Onestop Partners',ssUrlPrefix + 'econdev/phxwc/partners/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_24_0_5=g_navNode_24_0.addNode('444','PWC Board',ssUrlPrefix + 'econdev/phxwc/board/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_24_0_6=g_navNode_24_0.addNode('448','Workforce Professionals',ssUrlPrefix + 'econdev/phxwc/professionals/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_24_0_7=g_navNode_24_0.addNode('446','Contact Workforce Connection',ssUrlPrefix + 'econdev/phxwc/emonestop/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_24_1=g_navNode_24.addNode('449','Filming in Phoenix',ssUrlPrefix + 'econdev/filmphx/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_24_1_0=g_navNode_24_1.addNode('450','Locations',ssUrlPrefix + 'econdev/filmphx/locations/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_24_1_1=g_navNode_24_1.addNode('452','Contact the Film Office',ssUrlPrefix + 'econdev/filmphx/contact/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_26=g_navNode_Root.addNode('335','EAS',ssUrlPrefix + 'eas/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_27=g_navNode_Root.addNode('58','Environment Programs',ssUrlPrefix + 'environment/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_28=g_navNode_Root.addNode('665','Fire',ssUrlPrefix + 'fire/index.html','ChooseTitleBarStyle==Fire red','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_28_0=g_navNode_28.addNode('666','About Phoenix Fire',ssUrlPrefix + 'fire/aboutus/index.html','ChooseTitleBarStyle==Fire red','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_28_1=g_navNode_28.addNode('673','News and Information',ssUrlPrefix + 'fire/news/index.html','ChooseTitleBarStyle==Fire red','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_28_1_0=g_navNode_28_1.addNode('1951','News Archives',ssUrlPrefix + 'fire/news/archives/index.html','ChooseTitleBarStyle==fire red','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_28_2=g_navNode_28.addNode('667','Services and Programs',ssUrlPrefix + 'fire/services/index.html','ChooseTitleBarStyle==Fire red','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_28_3=g_navNode_28.addNode('668','Safety Information',ssUrlPrefix + 'fire/safety/index.html','ChooseTitleBarStyle==Fire red','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_28_4=g_navNode_28.addNode('669','Fire Prevention',ssUrlPrefix + 'fire/prevention/index.html','ChooseTitleBarStyle==Fire red','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_28_5=g_navNode_28.addNode('670','For Fire Departments',ssUrlPrefix + 'fire/forfiredepts/index.html','ChooseTitleBarStyle==Fire red','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_28_6=g_navNode_28.addNode('871','Video Gallery',ssUrlPrefix + 'fire/video/index.html','ChooseTitleBarStyle==fire red','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_28_7=g_navNode_28.addNode('674','Photo Gallery',ssUrlPrefix + 'fire/photo/index.html','ChooseTitleBarStyle==fire red','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_28_8=g_navNode_28.addNode('685','Employment',ssUrlPrefix + 'fire/employment/index.html','ChooseTitleBarStyle==fire red','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_28_9=g_navNode_28.addNode('675','Contact Phoenix Fire',ssUrlPrefix + 'fire/emfire/index.html','ChooseTitleBarStyle==fire red','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29=g_navNode_Root.addNode('1633','Housing',ssUrlPrefix + 'housing/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_29_0=g_navNode_29.addNode('1634','About Us',ssUrlPrefix + 'housing/aboutus/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_29_0_0=g_navNode_29_0.addNode('1635','Organization Chart',ssUrlPrefix + 'housing/aboutus/orgchart/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_29_0_1=g_navNode_29_0.addNode('1636','Contact Directory',ssUrlPrefix + 'housing/aboutus/directory/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_29_1=g_navNode_29.addNode('1639','What\'s new',ssUrlPrefix + 'housing/whatsnew/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_29_1_0=g_navNode_29_1.addNode('1640','RFPs/RFQs',ssUrlPrefix + 'housing/whatsnew/rfps/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_29_1_1=g_navNode_29_1.addNode('1641','News Releases',ssUrlPrefix + 'housing/whatsnew/news/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_29_2=g_navNode_29.addNode('1642','Brochures/Reports',ssUrlPrefix + 'housing/reports/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_29_3=g_navNode_29.addNode('1643','Finding Affordable Rental Housing',ssUrlPrefix + 'housing/finding/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_29_3_0=g_navNode_29_3.addNode('1644','Do I Qualify?',ssUrlPrefix + 'housing/finding/qualify/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_29_3_0_0=g_navNode_29_3_0.addNode('1731','Section 8',ssUrlPrefix + 'housing/finding/qualify/section8/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_3_0_1=g_navNode_29_3_0.addNode('1651','Assisted Public Housing',ssUrlPrefix + 'housing/finding/qualify/public/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_29_3_0_2=g_navNode_29_3_0.addNode('1652','Scattered Sites Housing',ssUrlPrefix + 'housing/finding/qualify/scatteredsites/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_29_3_0_3=g_navNode_29_3_0.addNode('1653','Senior/Disabled Housing',ssUrlPrefix + 'housing/finding/qualify/senior/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_29_3_1=g_navNode_29_3.addNode('1654','Persons with Disabilities',ssUrlPrefix + 'housing/finding/ada/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_3_2=g_navNode_29_3.addNode('1655','Families',ssUrlPrefix + 'housing/finding/families/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_3_3=g_navNode_29_3.addNode('1656','Single Persons',ssUrlPrefix + 'housing/finding/single/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_3_4=g_navNode_29_3.addNode('1657','Seniors',ssUrlPrefix + 'housing/finding/seniors/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_3_5=g_navNode_29_3.addNode('1658','Veterans',ssUrlPrefix + 'housing/finding/veterans/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_3_6=g_navNode_29_3.addNode('1659','Housing Opportunities for Persons with AIDS \x28HOPWA\x29',ssUrlPrefix + 'housing/finding/findhowpa/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_3_7=g_navNode_29_3.addNode('1660','Other Affordable Rental Opportunities',ssUrlPrefix + 'housing/finding/findother/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_3_7_0=g_navNode_29_3_7.addNode('1930','HOPE VI',ssUrlPrefix + 'housing/finding/findother/hopevi/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_29_4=g_navNode_29.addNode('1661','Buying Affordable Housing',ssUrlPrefix + 'housing/buying/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==FALSE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_4_0=g_navNode_29_4.addNode('1662','Down Payment and Closing Cost Assistance Programs',ssUrlPrefix + 'housing/buying/costassist/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_5=g_navNode_29.addNode('1663','Building Affordable Housing',ssUrlPrefix + 'housing/building/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_5_0=g_navNode_29_5.addNode('1664','Affordable Housing Loan Program',ssUrlPrefix + 'housing/building/loan/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_5_1=g_navNode_29_5.addNode('1847','Neighborhood Stabilization Program \x28NSP\x29',ssUrlPrefix + 'housing/building/nsp/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_6=g_navNode_29.addNode('1665','Section 8 Resources',ssUrlPrefix + 'housing/section8/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_6_0=g_navNode_29_6.addNode('1666','Landlord',ssUrlPrefix + 'housing/section8/landlord/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_6_0_0=g_navNode_29_6_0.addNode('1669','Advantages of the Program',ssUrlPrefix + 'housing/section8/landlord/advantages/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_6_1=g_navNode_29_6.addNode('1667','Tenants',ssUrlPrefix + 'housing/section8/tenants/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_6_2=g_navNode_29_6.addNode('1668','Inspections',ssUrlPrefix + 'housing/section8/inspections/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7=g_navNode_29.addNode('1670','Resident Resources',ssUrlPrefix + 'housing/resources/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_0=g_navNode_29_7.addNode('1672','Payment Information',ssUrlPrefix + 'housing/resources/payment/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_1=g_navNode_29_7.addNode('1673','Policies and Procedures',ssUrlPrefix + 'housing/resources/policies/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2=g_navNode_29_7.addNode('1674','Programs and Services',ssUrlPrefix + 'housing/resources/programs/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_0=g_navNode_29_7_2.addNode('1679','Community Building',ssUrlPrefix + 'housing/resources/programs/community/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_0_0=g_navNode_29_7_2_0.addNode('1687','Block Watch',ssUrlPrefix + 'housing/resources/programs/community/blockwatch/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_0_1=g_navNode_29_7_2_0.addNode('1688','Community Action Team',ssUrlPrefix + 'housing/resources/programs/community/team/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_0_3=g_navNode_29_7_2_0.addNode('1690','Resident Councils',ssUrlPrefix + 'housing/resources/programs/community/councils/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_1=g_navNode_29_7_2.addNode('1680','Education',ssUrlPrefix + 'housing/resources/programs/education/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_1_0=g_navNode_29_7_2_1.addNode('1691','GED \x26 ESL Classes',ssUrlPrefix + 'housing/resources/programs/education/classes/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_1_1=g_navNode_29_7_2_1.addNode('1692','Financial Education',ssUrlPrefix + 'housing/resources/programs/education/financial/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_1_2=g_navNode_29_7_2_1.addNode('1693','Head Start',ssUrlPrefix + 'housing/resources/programs/education/headstart/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_2=g_navNode_29_7_2.addNode('1681','Employment and Training Services',ssUrlPrefix + 'housing/resources/programs/employment/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_2_0=g_navNode_29_7_2_2.addNode('1694','Economic Initiatives',ssUrlPrefix + 'housing/resources/programs/employment/economic/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_2_1=g_navNode_29_7_2_2.addNode('1695','Family Self-Sufficiency',ssUrlPrefix + 'housing/resources/programs/employment/fss/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_2_2=g_navNode_29_7_2_2.addNode('1696','Financial Education',ssUrlPrefix + 'housing/resources/programs/employment/financial/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_2_3=g_navNode_29_7_2_2.addNode('1697','GED \x26 ESL Classes',ssUrlPrefix + 'housing/resources/programs/employment/classes/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_2_4=g_navNode_29_7_2_2.addNode('1698','Neighborhood Network Centers',ssUrlPrefix + 'housing/resources/programs/employment/centers/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_2_5=g_navNode_29_7_2_2.addNode('1699','Section 3 Employment Opportunities',ssUrlPrefix + 'housing/resources/programs/employment/section3emp/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_2_6=g_navNode_29_7_2_2.addNode('1700','Workforce Connection',ssUrlPrefix + 'housing/resources/programs/employment/wc/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_3=g_navNode_29_7_2.addNode('1682','Health \x26 Nutrition',ssUrlPrefix + 'housing/resources/programs/health/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_3_0=g_navNode_29_7_2_3.addNode('1711','Nutrition Education Classes',ssUrlPrefix + 'housing/resources/programs/health/nutrition/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_3_1=g_navNode_29_7_2_3.addNode('1712','On-Site Food Programs',ssUrlPrefix + 'housing/resources/programs/health/food/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_3_2=g_navNode_29_7_2_3.addNode('1713','Community Garden',ssUrlPrefix + 'housing/resources/programs/health/garden/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_4=g_navNode_29_7_2.addNode('1683','Homeownership for Assisted Housing Residents',ssUrlPrefix + 'housing/resources/programs/homeowner/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_4_0=g_navNode_29_7_2_4.addNode('1714','Section 32 Homeownership',ssUrlPrefix + 'housing/resources/programs/homeowner/section32/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_29_7_2_4_1=g_navNode_29_7_2_4.addNode('1715','Financial Education',ssUrlPrefix + 'housing/resources/programs/homeowner/financialed/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_5=g_navNode_29_7_2.addNode('1684','Senior Programs',ssUrlPrefix + 'housing/resources/programs/senior/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_5_1=g_navNode_29_7_2_5.addNode('1717','Community Garden',ssUrlPrefix + 'housing/resources/programs/senior/garden/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_5_2=g_navNode_29_7_2_5.addNode('1718','Neighborhood Network Centers',ssUrlPrefix + 'housing/resources/programs/senior/centers/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_5_3=g_navNode_29_7_2_5.addNode('1719','On-Site Food Programs',ssUrlPrefix + 'housing/resources/programs/senior/food/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_5_4=g_navNode_29_7_2_5.addNode('1720','Recreation \x26 Exercise',ssUrlPrefix + 'housing/resources/programs/senior/recreation/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_5_5=g_navNode_29_7_2_5.addNode('1721','Senior Service Coordinators',ssUrlPrefix + 'housing/resources/programs/senior/service/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_5_6=g_navNode_29_7_2_5.addNode('1722','Senior Centers',ssUrlPrefix + 'housing/resources/programs/senior/srcenters/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_5_7=g_navNode_29_7_2_5.addNode('1723','Shopping Trips',ssUrlPrefix + 'housing/resources/programs/senior/shopping/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_6=g_navNode_29_7_2.addNode('1685','Youth Programs',ssUrlPrefix + 'housing/resources/programs/youth/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_6_0=g_navNode_29_7_2_6.addNode('1859','GOALS',ssUrlPrefix + 'housing/resources/programs/youth/goals/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_6_1=g_navNode_29_7_2_6.addNode('1725','Neighborhood Network Centers',ssUrlPrefix + 'housing/resources/programs/youth/centers/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_6_2=g_navNode_29_7_2_6.addNode('1726','Nutrition Education Classes',ssUrlPrefix + 'housing/resources/programs/youth/nutrition/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_7=g_navNode_29_7_2.addNode('1686','Other Resources',ssUrlPrefix + 'housing/resources/programs/other/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_7_0=g_navNode_29_7_2_7.addNode('1727','Block Watch',ssUrlPrefix + 'housing/resources/programs/other/blockwatch/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_7_1=g_navNode_29_7_2_7.addNode('1728','Child Watch',ssUrlPrefix + 'housing/resources/programs/other/childwatch/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_7_2=g_navNode_29_7_2_7.addNode('1729','Income Tax Preparation',ssUrlPrefix + 'housing/resources/programs/other/taxprep/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_2_7_3=g_navNode_29_7_2_7.addNode('1730','Recreation Centers',ssUrlPrefix + 'housing/resources/programs/other/reccenters/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_7_3=g_navNode_29_7.addNode('1676','Work Orders',ssUrlPrefix + 'housing/resources/workorders/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_29_8=g_navNode_29.addNode('1671','Contact Housing Department',ssUrlPrefix + 'housing/emhsg/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_30=g_navNode_Root.addNode('332','ITS',ssUrlPrefix + 'its/index.html','ChooseTitleBarStyle==Plum','ShowAlert==TRUE','ShowDateTime==true','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31=g_navNode_Root.addNode('1153','Parks and Recreation',ssUrlPrefix + 'parks/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_0=g_navNode_31.addNode('1351','Classes and Programs',ssUrlPrefix + 'parks/classes/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_1=g_navNode_31.addNode('1352','Trails \x26 Desert Preserves',ssUrlPrefix + 'parks/trails/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_2=g_navNode_31.addNode('1353','Golf',ssUrlPrefix + 'parks/golf/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_3=g_navNode_31.addNode('1354','Parks',ssUrlPrefix + 'parks/parks/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_4=g_navNode_31.addNode('1355','Centers and Facilities',ssUrlPrefix + 'parks/centers/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_5=g_navNode_31.addNode('1356','Teen/After School Programs',ssUrlPrefix + 'parks/teens/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_6=g_navNode_31.addNode('1357','Adaptive Recreation',ssUrlPrefix + 'parks/adaptiverec/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_7=g_navNode_31.addNode('1358','Sports, Teams \x26 Leagues',ssUrlPrefix + 'parks/sports/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_8=g_navNode_31.addNode('1288','Arts, Culture \x26 History',ssUrlPrefix + 'parks/culture/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_31_8_0=g_navNode_31_8.addNode('1289','Arts Facilities and Programs',ssUrlPrefix + 'parks/culture/artsfacilities/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_31_8_1=g_navNode_31_8.addNode('1290','Cultural Facilities and Programs',ssUrlPrefix + 'parks/culture/cultural/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_31_8_2=g_navNode_31_8.addNode('1291','Museums and Historical Sites',ssUrlPrefix + 'parks/culture/museum/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0=g_navNode_31_8_2.addNode('1292','Pueblo Grande Museum',ssUrlPrefix + 'parks/culture/museum/pueblo/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_0=g_navNode_31_8_2_0.addNode('1293','About the Museum',ssUrlPrefix + 'parks/culture/museum/pueblo/about/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_0_0=g_navNode_31_8_2_0_0.addNode('1300','Visitor Information',ssUrlPrefix + 'parks/culture/museum/pueblo/about/visitorinfo/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_0_0_0=g_navNode_31_8_2_0_0_0.addNode('1304','Directions',ssUrlPrefix + 'parks/culture/museum/pueblo/about/visitorinfo/directions/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_0_0_1=g_navNode_31_8_2_0_0_0.addNode('1314','Visitor Materials',ssUrlPrefix + 'parks/culture/museum/pueblo/about/visitorinfo/materials/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_0_0_2=g_navNode_31_8_2_0_0_0.addNode('1315','Site Etiquette',ssUrlPrefix + 'parks/culture/museum/pueblo/about/visitorinfo/etiquette/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_0_1=g_navNode_31_8_2_0_0.addNode('1301','Directors Welcome',ssUrlPrefix + 'parks/culture/museum/pueblo/about/welcome/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_0_2=g_navNode_31_8_2_0_0.addNode('1302','Newsletter',ssUrlPrefix + 'parks/culture/museum/pueblo/about/newsletter/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_0_3=g_navNode_31_8_2_0_0.addNode('1303','Museum Store',ssUrlPrefix + 'parks/culture/museum/pueblo/about/store/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_1=g_navNode_31_8_2_0.addNode('1294','Calendar of Events',ssUrlPrefix + 'parks/culture/museum/pueblo/calendar/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_1_0=g_navNode_31_8_2_0_1.addNode('1317','Calendar Summary',ssUrlPrefix + 'parks/culture/museum/pueblo/calendar/summary/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_1_1=g_navNode_31_8_2_0_1.addNode('1318','Annual Events',ssUrlPrefix + 'parks/culture/museum/pueblo/calendar/annual/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_1_2=g_navNode_31_8_2_0_1.addNode('1319','Special Programs',ssUrlPrefix + 'parks/culture/museum/pueblo/calendar/special/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_1_3=g_navNode_31_8_2_0_1.addNode('1320','Just for Kids',ssUrlPrefix + 'parks/culture/museum/pueblo/calendar/kids/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_2=g_navNode_31_8_2_0.addNode('1295','Exhibits',ssUrlPrefix + 'parks/culture/museum/pueblo/exhibits/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_2_0=g_navNode_31_8_2_0_2.addNode('1321','Outdoor Trail',ssUrlPrefix + 'parks/culture/museum/pueblo/exhibits/outdoor/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_2_1=g_navNode_31_8_2_0_2.addNode('1322','Main Gallery',ssUrlPrefix + 'parks/culture/museum/pueblo/exhibits/maingallery/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_2_2=g_navNode_31_8_2_0_2.addNode('1323','Childrens Gallery',ssUrlPrefix + 'parks/culture/museum/pueblo/exhibits/childrengallery/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_2_3=g_navNode_31_8_2_0_2.addNode('1324','Changing Gallery',ssUrlPrefix + 'parks/culture/museum/pueblo/exhibits/changing/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_2_4=g_navNode_31_8_2_0_2.addNode('1325','Upcoming Exhibits',ssUrlPrefix + 'parks/culture/museum/pueblo/exhibits/upcoming/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_3=g_navNode_31_8_2_0.addNode('1296','Education and Resources',ssUrlPrefix + 'parks/culture/museum/pueblo/education/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_3_0=g_navNode_31_8_2_0_3.addNode('1326','Group Tours',ssUrlPrefix + 'parks/culture/museum/pueblo/education/groups/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_3_1=g_navNode_31_8_2_0_3.addNode('1327','School Tours',ssUrlPrefix + 'parks/culture/museum/pueblo/education/schools/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_3_2=g_navNode_31_8_2_0_3.addNode('1328','Teacher Workshops',ssUrlPrefix + 'parks/culture/museum/pueblo/education/teachers/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_3_3=g_navNode_31_8_2_0_3.addNode('1329','Volunteer Opportunities',ssUrlPrefix + 'parks/culture/museum/pueblo/education/volunteer/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_3_4=g_navNode_31_8_2_0_3.addNode('1330','Research Library',ssUrlPrefix + 'parks/culture/museum/pueblo/education/library/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_3_5=g_navNode_31_8_2_0_3.addNode('1331','Calendar of Events',ssUrlPrefix + 'parks/culture/museum/pueblo/education/calendar/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_4=g_navNode_31_8_2_0.addNode('1297','City Archaeology',ssUrlPrefix + 'parks/culture/museum/pueblo/archaeology/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_4_0=g_navNode_31_8_2_0_4.addNode('1333','Geocaching',ssUrlPrefix + 'parks/culture/museum/pueblo/archaeology/geocaching/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_4_1=g_navNode_31_8_2_0_4.addNode('1334','Publications',ssUrlPrefix + 'parks/culture/museum/pueblo/archaeology/publications/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_4_2=g_navNode_31_8_2_0_4.addNode('1335','Manuals \x26 Forms',ssUrlPrefix + 'parks/culture/museum/pueblo/archaeology/forms/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_5=g_navNode_31_8_2_0.addNode('1298','Collections',ssUrlPrefix + 'parks/culture/museum/pueblo/collections/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_5_0=g_navNode_31_8_2_0_5.addNode('1336','Adopt-a-Pot',ssUrlPrefix + 'parks/culture/museum/pueblo/collections/adoptapot/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_5_1=g_navNode_31_8_2_0_5.addNode('1337','Research Library',ssUrlPrefix + 'parks/culture/museum/pueblo/collections/library/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_5_2=g_navNode_31_8_2_0_5.addNode('1340','Repository Manual \x26 Forms',ssUrlPrefix + 'parks/culture/museum/pueblo/collections/forms/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_5_3=g_navNode_31_8_2_0_5.addNode('1338','Pieces of History',ssUrlPrefix + 'parks/culture/museum/pueblo/collections/history/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_8_2_0_6=g_navNode_31_8_2_0.addNode('1299','Contact Pueblo Grande',ssUrlPrefix + 'parks/culture/museum/pueblo/empueblo/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_9=g_navNode_31.addNode('1359','Pools',ssUrlPrefix + 'parks/pools/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_10=g_navNode_31.addNode('1360','Reservable Picnic Areas',ssUrlPrefix + 'parks/reserve/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_11=g_navNode_31.addNode('1850','Calendar of Events',ssUrlPrefix + 'parks/calendar/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_12=g_navNode_31.addNode('1361','About Us',ssUrlPrefix + 'parks/aboutparks/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_13=g_navNode_31.addNode('1362','Subscribe to Mailing List',ssUrlPrefix + 'parks/subscribe/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_14=g_navNode_31.addNode('1154','Contact Parks',ssUrlPrefix + 'parks/contact/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_31_14_0=g_navNode_31_14.addNode('1155','Contact Form',ssUrlPrefix + 'parks/contact/emprlrec/index.html','ChooseTitleBarStyle==saguaro','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32=g_navNode_Root.addNode('1232','Phoenix Convention Center and Venues',ssUrlPrefix + 'conventioncenter/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_0=g_navNode_32.addNode('1233','Venues\x3a Phoenix Convention Center',ssUrlPrefix + 'conventioncenter/phxconvctr/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_0_0=g_navNode_32_0.addNode('1237','About Us',ssUrlPrefix + 'conventioncenter/phxconvctr/aboutus/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_0_1=g_navNode_32_0.addNode('1238','Directions and Parking',ssUrlPrefix + 'conventioncenter/phxconvctr/parking/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_0_2=g_navNode_32_0.addNode('1239','Events and Tickets',ssUrlPrefix + 'conventioncenter/phxconvctr/purchase/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_0_3=g_navNode_32_0.addNode('1240','While You\'re Here',ssUrlPrefix + 'conventioncenter/phxconvctr/thingsto/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_0_4=g_navNode_32_0.addNode('1241','Building Layout',ssUrlPrefix + 'conventioncenter/phxconvctr/interact/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_1=g_navNode_32.addNode('1234','Venues\x3a Orpheum Theater',ssUrlPrefix + 'conventioncenter/orpheum/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_1_0=g_navNode_32_1.addNode('1242','Directions and Parking',ssUrlPrefix + 'conventioncenter/orpheum/parking/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_1_1=g_navNode_32_1.addNode('1243','Events and Tickets',ssUrlPrefix + 'conventioncenter/orpheum/purchase/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_1_2=g_navNode_32_1.addNode('1244','Where\'s My Seat',ssUrlPrefix + 'conventioncenter/orpheum/seats/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_1_3=g_navNode_32_1.addNode('1245','Orpheum History',ssUrlPrefix + 'conventioncenter/orpheum/orphist/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_2=g_navNode_32.addNode('1235','Venues\x3a Symphony Hall',ssUrlPrefix + 'conventioncenter/symphonyhall/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_2_0=g_navNode_32_2.addNode('1246','Directions and Parking',ssUrlPrefix + 'conventioncenter/symphonyhall/parking/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_2_1=g_navNode_32_2.addNode('1247','Events and Tickets',ssUrlPrefix + 'conventioncenter/symphonyhall/purchase/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_2_2=g_navNode_32_2.addNode('1248','Symphony Hall History',ssUrlPrefix + 'conventioncenter/symphonyhall/history/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_2_3=g_navNode_32_2.addNode('1249','Resident Companies',ssUrlPrefix + 'conventioncenter/symphonyhall/clients/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_3=g_navNode_32.addNode('1236','Venues\x3a Executive Conference Center',ssUrlPrefix + 'conventioncenter/executive/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_3_0=g_navNode_32_3.addNode('1251','Directions and Parking',ssUrlPrefix + 'conventioncenter/executive/parking/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_4=g_navNode_32.addNode('1250','Volunteer',ssUrlPrefix + 'conventioncenter/volunteer/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_5=g_navNode_32.addNode('1252','Events and Tickets',ssUrlPrefix + 'conventioncenter/purchase/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_6=g_navNode_32.addNode('1253','Directions and Parking',ssUrlPrefix + 'conventioncenter/directions/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_7=g_navNode_32.addNode('1254','Media Room',ssUrlPrefix + 'conventioncenter/media/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_7_0=g_navNode_32_7.addNode('1255','News Releases',ssUrlPrefix + 'conventioncenter/media/news/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_7_0_0=g_navNode_32_7_0.addNode('1264','Phoenix Convention Center News Releases RSS Feed',ssUrlPrefix + 'conventioncenter/media/news/rss/index.html','secondaryUrlVariableField==region9','xmlQueryText==dDocType \x3cmatches\x3e \x60News_Release\x60  \x3cAND\x3e  dDocAccount \x3cmatches\x3e \x60INTER/NEWSREL/CONV\x60\x3cAND\x3e  xDocRefDate \x3e\x3d \x60\x3c\x24dateCurrent\x28-7\x29\x24\x3e\x60');
g_navNode_32_7_1=g_navNode_32_7.addNode('1256','Newsletter',ssUrlPrefix + 'conventioncenter/media/newsletter/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_32_8=g_navNode_32.addNode('1257','Contact Us',ssUrlPrefix + 'conventioncenter/contact/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_33=g_navNode_Root.addNode('268','PIO',ssUrlPrefix + 'pio/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_34=g_navNode_Root.addNode('353','Water Services',ssUrlPrefix + 'waterservices/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_34_0=g_navNode_34.addNode('1079','Customer Services',ssUrlPrefix + 'waterservices/customerservices/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_34_0_0=g_navNode_34_0.addNode('1080','Payment Services',ssUrlPrefix + 'waterservices/customerservices/payment/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_34_0_0_0=g_navNode_34_0_0.addNode('1083','Bill Payment Options',ssUrlPrefix + 'waterservices/customerservices/payment/options/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_34_0_0_1=g_navNode_34_0_0.addNode('1084','SurePay Information',ssUrlPrefix + 'waterservices/customerservices/payment/surepay/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_34_0_0_2=g_navNode_34_0_0.addNode('1085','Bill Payment Locations',ssUrlPrefix + 'waterservices/customerservices/payment/locations/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_34_0_0_3=g_navNode_34_0_0.addNode('1086','Water and Sewer Rate Information',ssUrlPrefix + 'waterservices/customerservices/payment/rates/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_34_0_0_4=g_navNode_34_0_0.addNode('1087','How to Read Your Water Bill',ssUrlPrefix + 'waterservices/customerservices/payment/readbill/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_34_0_1=g_navNode_34_0.addNode('1081','Account Services',ssUrlPrefix + 'waterservices/customerservices/account/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_34_0_1_0=g_navNode_34_0_1.addNode('1088','Set up or Close Account',ssUrlPrefix + 'waterservices/customerservices/account/setup/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_34_0_1_1=g_navNode_34_0_1.addNode('1089','Water and Sewer Rate Information',ssUrlPrefix + 'waterservices/customerservices/account/rates/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_34_0_1_2=g_navNode_34_0_1.addNode('1090','Request a Billing Summary',ssUrlPrefix + 'waterservices/customerservices/account/summary/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_34_0_1_3=g_navNode_34_0_1.addNode('1091','Update Account Information',ssUrlPrefix + 'waterservices/customerservices/account/update/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_34_0_1_4=g_navNode_34_0_1.addNode('1092','Request Duplicate Bill',ssUrlPrefix + 'waterservices/customerservices/account/duplicate/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_34_0_1_5=g_navNode_34_0_1.addNode('1093','Request Water Consumption History',ssUrlPrefix + 'waterservices/customerservices/account/history/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_34_0_1_6=g_navNode_34_0_1.addNode('1094','Helpful Forms and Letters',ssUrlPrefix + 'waterservices/customerservices/account/letters/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_34_0_2=g_navNode_34_0.addNode('1082','Common Service Issues',ssUrlPrefix + 'waterservices/customerservices/issues/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_34_0_2_0=g_navNode_34_0_2.addNode('1095','Water Service Issues',ssUrlPrefix + 'waterservices/customerservices/issues/water/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_34_0_2_1=g_navNode_34_0_2.addNode('1096','Sewer Service Issues',ssUrlPrefix + 'waterservices/customerservices/issues/sewer/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_34_0_2_2=g_navNode_34_0_2.addNode('1097','Draining and Refilling Your Pool',ssUrlPrefix + 'waterservices/customerservices/issues/pool/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==true','ShowDateTime==true','ShowWeather==true','secondaryUrlVariableField==region9');
g_navNode_34_1=g_navNode_34.addNode('356','Water Resources \x26 Conservation',ssUrlPrefix + 'waterservices/wrc/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_34_1_0=g_navNode_34_1.addNode('376','Library',ssUrlPrefix + 'waterservices/wrc/library/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_34_1_1=g_navNode_34_1.addNode('375','Literature \x26 Media',ssUrlPrefix + 'waterservices/wrc/media/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_34_1_2=g_navNode_34_1.addNode('381','Contact Water Resources \x26 Conservation',ssUrlPrefix + 'waterservices/wrc/contact/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_34_1_3=g_navNode_34_1.addNode('357','Your Water News',ssUrlPrefix + 'waterservices/wrc/news/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_34_1_4=g_navNode_34_1.addNode('358','Your Home',ssUrlPrefix + 'waterservices/wrc/home/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_34_1_4_0=g_navNode_34_1_4.addNode('360','Outdoor',ssUrlPrefix + 'waterservices/wrc/home/outdoor/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_34_1_4_1=g_navNode_34_1_4.addNode('359','Quick Tips',ssUrlPrefix + 'waterservices/wrc/home/quicktips/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_34_1_4_2=g_navNode_34_1_4.addNode('361','Indoor',ssUrlPrefix + 'waterservices/wrc/home/indoor/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_34_1_5=g_navNode_34_1.addNode('363','Your Business',ssUrlPrefix + 'waterservices/wrc/business/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_34_1_5_0=g_navNode_34_1_5.addNode('364','Quick Tips',ssUrlPrefix + 'waterservices/wrc/business/quicktips/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_34_1_5_1=g_navNode_34_1_5.addNode('365','Indoor',ssUrlPrefix + 'waterservices/wrc/business/indoor/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_34_1_5_2=g_navNode_34_1_5.addNode('366','Outdoor',ssUrlPrefix + 'waterservices/wrc/business/outdoor/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_34_1_6=g_navNode_34_1.addNode('368','Your School',ssUrlPrefix + 'waterservices/wrc/school/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_34_1_6_0=g_navNode_34_1_6.addNode('369','Classroom Materials',ssUrlPrefix + 'waterservices/wrc/school/appclassmaterials/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_34_1_7=g_navNode_34_1.addNode('370','Your Water',ssUrlPrefix + 'waterservices/wrc/yourwater/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_34_1_7_0=g_navNode_34_1_7.addNode('373','Salinity',ssUrlPrefix + 'waterservices/wrc/yourwater/salinity/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_34_1_7_1=g_navNode_34_1_7.addNode('70','History of Phoenix Water',ssUrlPrefix + 'waterservices/wrc/yourwater/history/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_34_1_8=g_navNode_34_1.addNode('374','FAQs',ssUrlPrefix + 'waterservices/wrc/faqs/index.html','ChooseTitleBarStyle==royal blue','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_35=g_navNode_Root.addNode('19','E-Services',ssUrlPrefix + 'eservices/index.html','ChooseTitleBarStyle==plum','PageTitleBarText==E Services','ShowAlert==true','ShowDateTime==true','ShowWeather==true','UseInGrayNav==TRUE','cspPageTitle==E Services','secondaryUrlVariableField==region9');
g_navNode_35_0=g_navNode_35.addNode('166','Permits \x26 Taxes',ssUrlPrefix + 'eservices/permits/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_35_1=g_navNode_35.addNode('167','Pay a Bill, Fine, Fee',ssUrlPrefix + 'eservices/paybill/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_35_2=g_navNode_35.addNode('168','Applications, Registrations \x26 Reservations',ssUrlPrefix + 'eservices/register/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_35_2_0=g_navNode_35_2.addNode('491','Fire Symposiums',ssUrlPrefix + 'eservices/register/symposiums/index.html','ChooseTitleBarStyle==fire red','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_35_2_0_0=g_navNode_35_2_0.addNode('532','Contact Symposium Staff',ssUrlPrefix + 'eservices/register/symposiums/emsympos/index.html','ChooseTitleBarStyle==red rock','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_35_3=g_navNode_35.addNode('169','Request Information \x26 Reports',ssUrlPrefix + 'eservices/requestinfo/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_35_4=g_navNode_35.addNode('170','Purchase from the City',ssUrlPrefix + 'eservices/purchasecity/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_35_5=g_navNode_35.addNode('171','Schedule or Request a Service',ssUrlPrefix + 'eservices/requestservice/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
g_navNode_35_6=g_navNode_35.addNode('172','Publications for Sale',ssUrlPrefix + 'eservices/publications/index.html','ChooseTitleBarStyle==plum','ShowAlert==TRUE','ShowDateTime==TRUE','ShowWeather==TRUE','secondaryUrlVariableField==region9');
