/////////////////////////////////////////////////////////////////////////////
// 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('unc-home','Home',ssUrlPrefix + 'index.htm',null,'ImageName==CCM3_026167','ImageText==Students enjoy a spring day on Carolina\\x27s quad known as McCorkle Place.','maxAge==600','maxAgeSecondary==600','query01==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xIsCampusUpdate \x3cmatches\x3e \x60Yes\x60','secondaryUrlVariableField==region2','showInMain==true');
g_navNode_1=g_navNode_Root.addNode('about-unc','About UNC',ssUrlPrefix + 'about/index.htm','secondaryUrlVariableField==region3','showInMain==TRUE');
g_navNode_1_1=g_navNode_1.addNode('about-unc-faqs','FAQs',ssUrlPrefix + 'about/faqs/index.htm','ImageName==ccm1_032450','secondaryUrlVariableField==region3');
g_navNode_1_2=g_navNode_1.addNode('hx-trad','History and Traditions',ssUrlPrefix + 'about/history-traditions/index.htm','secondaryUrlVariableField==region3');
g_navNode_1_2_0=g_navNode_1_2.addNode('unc-history','History',ssUrlPrefix + 'about/history-traditions/history/index.htm','secondaryUrlVariableField==region3');
g_navNode_1_2_1=g_navNode_1_2.addNode('logo-licensing','Logo and Licensing',ssUrlPrefix + 'about/history-traditions/logo-licensing/index.htm','secondaryUrlVariableField==region3');
g_navNode_1_2_2=g_navNode_1_2.addNode('landmarks','Landmarks',ssUrlPrefix + 'about/history-traditions/landmarks/index.htm','secondaryUrlVariableField==region3');
g_navNode_1_2_3=g_navNode_1_2.addNode('mascot','School Mascot',ssUrlPrefix + 'about/history-traditions/mascot/index.htm','secondaryUrlVariableField==region3');
g_navNode_1_2_4=g_navNode_1_2.addNode('100121','Southern Roots',ssUrlPrefix + 'about/history-traditions/SouthernRoots/index.htm','secondaryUrlVariableField==region3');
g_navNode_1_2_5=g_navNode_1_2.addNode('university-colors','University Colors',ssUrlPrefix + 'about/history-traditions/university-colors/index.htm','secondaryUrlVariableField==region3');
g_navNode_1_2_6=g_navNode_1_2.addNode('university-day','University Day',ssUrlPrefix + 'about/history-traditions/university-day/index.htm','secondaryUrlVariableField==region3');
g_navNode_1_2_7=g_navNode_1_2.addNode('100035','What\'s a Tar Heel?',ssUrlPrefix + 'about/history-traditions/TarHeel/index.htm','secondaryUrlVariableField==region3');
g_navNode_1_3=g_navNode_1.addNode('news-press','News and Media',ssUrlPrefix + 'about/press/index.htm','secondaryUrlVariableField==region3');
g_navNode_1_5=g_navNode_1.addNode('contact-unc','Contact Us',ssUrlPrefix + 'about/contact/index.htm','secondaryUrlVariableField==region3');
g_navNode_2=g_navNode_Root.addNode('academics','Academics',ssUrlPrefix + 'academics/index.htm','secondaryUrlVariableField==region3','showInMain==TRUE');
g_navNode_2_0=g_navNode_2.addNode('depts-a-z','Academic Departments',ssUrlPrefix + 'academics/depts-a-z/index.htm','secondaryUrlVariableField==region3');
g_navNode_2_2=g_navNode_2.addNode('courses','Courses, Continuing Education \x26 Distance Education',ssUrlPrefix + 'academics/courses/index.htm','secondaryUrlVariableField==region3');
g_navNode_2_3=g_navNode_2.addNode('unc-provost','Provost',ssUrlPrefix + 'academics/provost/index.htm','secondaryUrlVariableField==region3');
g_navNode_2_4=g_navNode_2.addNode('academic-svcs','Services and Resources',ssUrlPrefix + 'academics/academic-services/index.htm','secondaryUrlVariableField==region3');
g_navNode_3=g_navNode_Root.addNode('research','Research',ssUrlPrefix + 'research-at-unc/index.htm','hideRandomMaTH==TRUE','secondaryUrlVariableField==region3','showInMain==TRUE');
g_navNode_4=g_navNode_Root.addNode('public-service','Public Service',ssUrlPrefix + 'public-service/index.htm','ImageName==UNC_BG03','ImageText==The Old Well stands at the heart of the campus as the visual symbol of The University of North Carolina at Chapel Hill.','hideRandomMaTH==TRUE','secondaryUrlVariableField==region3','showInMain==TRUE');
g_navNode_5=g_navNode_Root.addNode('health-care','Health Care',ssUrlPrefix + 'health/index.htm','hideRandomMaTH==TRUE','secondaryUrlVariableField==region3','showInMain==TRUE');
g_navNode_6=g_navNode_Root.addNode('unc-global','UNC Global',ssUrlPrefix + 'unc-global/index.htm','showInMain==TRUE');
g_navNode_7=g_navNode_Root.addNode('arts','Arts',ssUrlPrefix + 'arts/index.htm','ImageName==CCM1_033390','ImageText==PlayMakers Repertory Company productions such as Pride and Prejudice are among the arts highlights at UNC-Chapel Hill each year. \x28PlayMakers Repertory Company by Jon Gardiner\x29 ','secondaryUrlVariableField==region3','showInMain==TRUE');
g_navNode_8=g_navNode_Root.addNode('athletics','Athletics',ssUrlPrefix + 'athletics/index.htm','ImageName==ccm1_033392','ImageText==The Dean E. Smith Student Activities Center, popularly called the \"Dean Dome,\" is named for beloved former basketball coach Dean E. Smith. Smith led the Tar Heels from 1961 to 1997.','lastInMain==false','secondaryUrlVariableField==region3','showInMain==TRUE');
g_navNode_9=g_navNode_Root.addNode('prospective','Prospective Students',ssUrlPrefix + 'prospective-students/index.htm','secondaryUrlVariableField==region3','showInAudience==TRUE','showInGateway==TRUE');
g_navNode_10=g_navNode_Root.addNode('current','Current Students',ssUrlPrefix + 'current-students/index.htm','secondaryUrlVariableField==region3','showInAudience==TRUE','showInGateway==TRUE');
g_navNode_10_0=g_navNode_10.addNode('students-today','Today and Tomorrow',ssUrlPrefix + 'current-students/today-tomorrow/index.htm','query01==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60Student\x60  \x3cAND\x3e  xIsTodayAndTomorrow \x3cmatches\x3e \x60Yes\x60  \x3cAND\x3e  xWebsites  \x3ccontains\x3e  \x60web\x60','secondaryUrlVariableField==region2');
g_navNode_10_1=g_navNode_10.addNode('new-students','New Students',ssUrlPrefix + 'current-students/new-students/index.htm','secondaryUrlVariableField==region3');
g_navNode_10_2=g_navNode_10.addNode('graduating-students','Graduating Students',ssUrlPrefix + 'current-students/graduating-students/index.htm','secondaryUrlVariableField==region3');
g_navNode_11=g_navNode_Root.addNode('faculty-staff','Faculty and Staff',ssUrlPrefix + 'faculty-staff/index.htm','secondaryUrlVariableField==region3','showInAudience==TRUE','showInGateway==TRUE');
g_navNode_11_0=g_navNode_11.addNode('faculty-today','Today and Tomorrow',ssUrlPrefix + 'faculty-staff/today-tomorrow/index.htm','query01==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60Faculty and Staff\x60  \x3cAND\x3e  xIsTodayAndTomorrow \x3cmatches\x3e \x60Yes\x60','secondaryUrlVariableField==region2');
g_navNode_12=g_navNode_Root.addNode('alumni','Alumni',ssUrlPrefix + 'alumni/index.htm','hideRandomMaTH==TRUE','secondaryUrlVariableField==region3','showInAudience==TRUE','showInGateway==TRUE');
g_navNode_13=g_navNode_Root.addNode('parents','Parents',ssUrlPrefix + 'parents/index.htm','hideRandomMaTH==TRUE','secondaryUrlVariableField==region3','showInAudience==TRUE');
g_navNode_13_0=g_navNode_13.addNode('getting-started','Getting Started',ssUrlPrefix + 'parents/getting-started/index.htm','hideRandomMaTH==TRUE','secondaryUrlVariableField==region3');
g_navNode_14=g_navNode_Root.addNode('visitors','Visitors',ssUrlPrefix + 'visitors/index.htm','lastInMain==TRUE','secondaryUrlVariableField==region3','showInAudience==TRUE');
g_navNode_14_1=g_navNode_14.addNode('gittin-here','Getting Here',ssUrlPrefix + 'visitors/getting-here/index.htm','secondaryUrlVariableField==region3');
g_navNode_14_2=g_navNode_14.addNode('1253','Helpful Contacts',ssUrlPrefix + 'visitors/HelpfulContacts/index.htm','secondaryUrlVariableField==region3');
g_navNode_14_3=g_navNode_14.addNode('top-destinations','Top Destinations',ssUrlPrefix + 'visitors/top-destinations/index.htm','secondaryUrlVariableField==region3');
g_navNode_15=g_navNode_Root.addNode('a-z','A - Z Index',ssUrlPrefix + 'a-z/index.htm','secondaryUrlVariableField==region3');
g_navNode_16=g_navNode_Root.addNode('departments','Departments',ssUrlPrefix + 'departments/index.htm','secondaryUrlVariableField==region3');
g_navNode_17=g_navNode_Root.addNode('maps','Maps',ssUrlPrefix + 'maps/index.htm');
g_navNode_18=g_navNode_Root.addNode('unc-spotlight','Spotlight',ssUrlPrefix + 'spotlight/index.htm','query01==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3aunc-spotlight\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xIsFeatured \x3cmatches\x3e \x60Yes\x60  \x3cAND\x3e  dateCurrent\x28\x29  \x3e\x3d  xExtDate1','secondaryUrlVariableField==region1');
g_navNode_19=g_navNode_Root.addNode('interactive-tour','Interactive Tour',ssUrlPrefix + 'interactive-tour/index.htm','query01==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3atour-landmarks\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60','secondaryUrlVariableField==region3');
g_navNode_19_0=g_navNode_19.addNode('tour-landmarks','Landmarks',ssUrlPrefix + 'interactive-tour/landmarks/index.htm','query01==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3atour-landmarks\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60','secondaryUrlVariableField==region1');
g_navNode_19_2=g_navNode_19.addNode('tour-arts','Arts',ssUrlPrefix + 'interactive-tour/arts/index.htm','query01==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3atour-arts\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60','secondaryUrlVariableField==region1');
g_navNode_19_3=g_navNode_19.addNode('tour-athletics','Athletics and Recreation',ssUrlPrefix + 'interactive-tour/athletics/index.htm','query01==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3atour-athletics\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60','secondaryUrlVariableField==region1');
g_navNode_19_6=g_navNode_19.addNode('tour-campus','Campus',ssUrlPrefix + 'interactive-tour/campus/index.htm','query01==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3atour-campus\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60','secondaryUrlVariableField==region1');
g_navNode_20=g_navNode_Root.addNode('meet-a-tar-heel','Meet a Tar Heel',ssUrlPrefix + 'meet-a-tar-heel/index.htm','query01==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60','secondaryUrlVariableField==region2');
g_navNode_20_0=g_navNode_20.addNode('math-faculty','Faculty',ssUrlPrefix + 'meet-a-tar-heel/faculty/index.htm','query01==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xPersonType  \x3csubstring\x3e  \x60Faculty\x60','secondaryUrlVariableField==region2');
g_navNode_20_1=g_navNode_20.addNode('math-staff','Staff',ssUrlPrefix + 'meet-a-tar-heel/staff/index.htm','query01==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xPersonType  \x3csubstring\x3e  \x60Staff\x60','secondaryUrlVariableField==region2');
g_navNode_20_2=g_navNode_20.addNode('math-students','Students',ssUrlPrefix + 'meet-a-tar-heel/students/index.htm','query01==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xPersonType  \x3csubstring\x3e  \x60Student\x60','secondaryUrlVariableField==region2');
g_navNode_20_3=g_navNode_20.addNode('math-alumni','Alumni',ssUrlPrefix + 'meet-a-tar-heel/alumni/index.htm','query01==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xPersonType  \x3csubstring\x3e  \x60Alumni\x60','secondaryUrlVariableField==region2');
g_navNode_20_4=g_navNode_20.addNode('math-research','Research',ssUrlPrefix + 'meet-a-tar-heel/research/index.htm','query01==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xPersonInterest  \x3csubstring\x3e  \x60Research\x60','query02==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xPersonType  \x3csubstring\x3e  \x60Staff\x60  \x3cAND\x3e  xPersonInterest  \x3csubstring\x3e  \x60Research\x60','query03==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xPersonType  \x3csubstring\x3e  \x60Student\x60  \x3cAND\x3e  xPersonInterest  \x3csubstring\x3e  \x60Research\x60','query04==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xPersonType  \x3csubstring\x3e  \x60Alumni\x60  \x3cAND\x3e  xPersonInterest  \x3csubstring\x3e  \x60Research\x60','secondaryUrlVariableField==region2');
g_navNode_20_5=g_navNode_20.addNode('math-public-svc','Public Service',ssUrlPrefix + 'meet-a-tar-heel/public-service/index.htm','query01==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60 \x3cAND\x3e  xPersonInterest  \x3csubstring\x3e  \x60Public Service\x60','query02==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xPersonType  \x3csubstring\x3e  \x60Staff\x60  \x3cAND\x3e  xPersonInterest  \x3csubstring\x3e  \x60Public Service\x60','query03==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xPersonType  \x3csubstring\x3e  \x60Student\x60  \x3cAND\x3e  xPersonInterest  \x3csubstring\x3e  \x60Public Service\x60','query04==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xPersonType  \x3csubstring\x3e  \x60Alumni\x60  \x3cAND\x3e  xPersonInterest  \x3csubstring\x3e  \x60Public Service\x60','secondaryUrlVariableField==region2');
g_navNode_20_6=g_navNode_20.addNode('math-health','Health Care',ssUrlPrefix + 'meet-a-tar-heel/health-care/index.htm','query01==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xPersonInterest  \x3csubstring\x3e  \x60Health Care\x60','query02==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xPersonType  \x3csubstring\x3e  \x60Staff\x60  \x3cAND\x3e  xPersonInterest  \x3csubstring\x3e  \x60Health Care\x60','query03==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xPersonType  \x3csubstring\x3e  \x60Student\x60  \x3cAND\x3e  xPersonInterest  \x3csubstring\x3e  \x60Health Care\x60','query04==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xPersonType  \x3csubstring\x3e  \x60Alumni\x60  \x3cAND\x3e  xPersonInterest  \x3csubstring\x3e  \x60Health Care\x60','secondaryUrlVariableField==region2');
g_navNode_20_7=g_navNode_20.addNode('math-global','Global',ssUrlPrefix + 'meet-a-tar-heel/global/index.htm','query01==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xPersonInterest  \x3csubstring\x3e  \x60Global\x60','query02==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xPersonType  \x3csubstring\x3e  \x60Staff\x60  \x3cAND\x3e  xPersonInterest  \x3csubstring\x3e  \x60Global\x60','query03==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xPersonType  \x3csubstring\x3e  \x60Student\x60  \x3cAND\x3e  xPersonInterest  \x3csubstring\x3e  \x60Global\x60','query04==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xPersonType  \x3csubstring\x3e  \x60Alumni\x60  \x3cAND\x3e  xPersonInterest  \x3csubstring\x3e  \x60Global\x60','secondaryUrlVariableField==region2');
g_navNode_20_8=g_navNode_20.addNode('math-arts','Arts',ssUrlPrefix + 'meet-a-tar-heel/arts/index.htm','query01==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xPersonInterest  \x3csubstring\x3e  \x60Arts\x60','query02==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xPersonType  \x3csubstring\x3e  \x60Staff\x60  \x3cAND\x3e  xPersonInterest  \x3csubstring\x3e  \x60Arts\x60','query03==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xPersonType  \x3csubstring\x3e  \x60Student\x60  \x3cAND\x3e  xPersonInterest  \x3csubstring\x3e  \x60Arts\x60','query04==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3ameet-a-tar-heel\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60  \x3cAND\x3e  xPersonType  \x3csubstring\x3e  \x60Alumni\x60  \x3cAND\x3e  xPersonInterest  \x3csubstring\x3e  \x60Arts\x60','secondaryUrlVariableField==region2');
g_navNode_21=g_navNode_Root.addNode('discover-unc','Discover UNC',ssUrlPrefix + 'discover-unc/index.htm','query01==dDocType \x3cmatches\x3e \x60Content\x60  \x3cAND\x3e  xWebsiteSection \x3csubstring\x3e \x60web\x3adiscover-unc\x60  \x3cAND\x3e  xWebsiteObjectType \x3cmatches\x3e \x60Data File\x60','secondaryUrlVariableField==region1');
g_navNode_22=g_navNode_Root.addNode('commencement','Commencement',ssUrlPrefix + 'commencement/index.htm','secondaryUrlVariableField==region3');
g_navNode_23=g_navNode_Root.addNode('1716','Stay Connected at UNC',ssUrlPrefix + 'social/index.htm');
g_navNode_23_0=g_navNode_23.addNode('1717','Facebook',ssUrlPrefix + 'social/facebook/index.htm');
g_navNode_23_1=g_navNode_23.addNode('1719','Twitter',ssUrlPrefix + 'social/twitter/index.htm');
g_navNode_23_2=g_navNode_23.addNode('1720','Video',ssUrlPrefix + 'social/video/index.htm');
g_navNode_23_3=g_navNode_23.addNode('1723','Flickr',ssUrlPrefix + 'social/flickr/index.htm');
g_navNode_23_4=g_navNode_23.addNode('2195','iTunes',ssUrlPrefix + 'social/iTunes/index.htm');
g_navNode_23_5=g_navNode_23.addNode('1722','Blogs',ssUrlPrefix + 'social/blogs/index.htm');

