/////////////////////////////////////////////////////////////////////////////
// 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('585','School of Education',ssUrlPrefix + 'index.htm',null,'cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspFeatureImgQuery==dSecurityGroup \x3cmatches\x3e \x60Public\x60  \x3cAND\x3e  xJCUContentCategory \x3csubstring\x3e \x60Object\x60  \x3cAND\x3e  xJCUContentGrouping \x3csubstring\x3e \x60Graphic Object\x60  \x3cAND\x3e  xContentType \x3csubstring\x3e \x60WebGraphics\x60  \x3cAND\x3e  xSubject \x3csubstring\x3e \x60ed_hp\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60education\x60','cspNavImage==JCUPRD_017646','cspNavImgURL==index.htm','cspQueryText==dDocType\x3dfoo','secondaryUrlVariableField==region1');
g_navNode_0=g_navNode_Root.addNode('1219','Current Students',ssUrlPrefix + 'current/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspNavImage==JCUPRD_017646','cspNavImgURL==../index.htm','cspQueryText==xAudience \x3csubstring\x3e \x60Students_current\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60education\x60  \x3cAND\x3e  \x3cNOT\x3e \x28xJCU_Topic \x3cmatches\x3e \x60Professional Experience\x60\x29','cspSortSpec==xJCUSequence asc','secondaryUrlVariableField==region1');
g_navNode_1=g_navNode_Root.addNode('594','News \x26 Events',ssUrlPrefix + 'news/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspNavImage==JCUPRD_017646','cspNavImgURL==../index.htm','cspQueryText==\x28dDocType \x3cmatches\x3e \x60Event_description\x60  \x3cOR\x3e   xJCUContentGrouping \x3cmatches\x3e \x60News/Media\x60\x29  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60education\x60','cspSortSpec==dInDate desc','secondaryUrlVariableField==region1');
g_navNode_2=g_navNode_Root.addNode('590','Postgraduate Programs',ssUrlPrefix + 'postgrad/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspDisplayField==\x3c\x24xJCU_Heading\x24\x3e','cspNavImage==JCUPRD_017646','cspNavImgURL==../index.htm','cspQueryText==dDocType \x3csubstring\x3e \x60Degrees_programs\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60Students_prospective_postgraduate\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60education\x60','cspSortSpec==xJCU_Heading desc dDocTitle asc','secondaryUrlVariableField==region1');
g_navNode_3=g_navNode_Root.addNode('588','Professional Experience',ssUrlPrefix + 'profex/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspNavImage==JCUPRD_017646','cspNavImgURL==../index.htm','cspQueryText==dDocType \x3csubstring\x3e \x60foo\x60','secondaryUrlVariableField==region1');
g_navNode_3_0=g_navNode_3.addNode('596','General Information',ssUrlPrefix + 'profex/general/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspDisplayField==\x3c\x24xJCU_Heading\x24\x3e','cspNavImage==JCUPRD_017646','cspNavImgURL==../../index.htm','cspQueryText==xWebsites \x3ccontains\x3e \x60education\x60  \x3cAND\x3e  \x28xJCU_Topic \x3csubstring\x3e \x60Professional Experience\x60 \x3cAND\x3e xJCU_Topic \x3csubstring\x3e \x60About\x60\x29','cspSortSpec==xJCU_Heading asc xJCUSequence asc','secondaryUrlVariableField==region1');
g_navNode_3_1=g_navNode_3.addNode('597','Information for Students',ssUrlPrefix + 'profex/students/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspNavImage==JCUPRD_017646','cspNavImgURL==../../index.htm','cspQueryText==xAudience \x3csubstring\x3e \x60Students_current\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60education\x60  \x3cAND\x3e  xJCU_Topic \x3csubstring\x3e \x60Professional Experience\x60','cspSortSpec==dDocTitle asc','secondaryUrlVariableField==region1');
g_navNode_3_1_0=g_navNode_3_1.addNode('633','FAQs',ssUrlPrefix + 'profex/students/faqs/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspNavImage==JCUPRD_017646','cspNavImgURL==../../../index.htm','cspQueryText==\x3cNOT\x3e \x28xJCU_Topic \x3csubstring\x3e \x60Rural\x60\x29 \x3cAND\x3e dDocType \x3csubstring\x3e \x60FAQs\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60education\x60  \x3cAND\x3e  xJCU_Topic \x3csubstring\x3e \x60Professional Experience\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60Students_all\x60','cspSortSpec==dDocTitle asc','secondaryUrlVariableField==region1');
g_navNode_3_1_1=g_navNode_3_1.addNode('1561','Resources',ssUrlPrefix + 'profex/students/resources/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspDisplayField==\x3c\x24xJCU_Heading\x24\x3e','cspNavImage==JCUPRD_017646','cspNavImgURL==../../../index.htm','cspQueryText==xWebsites \x3ccontains\x3e \x60education\x60  \x3cAND\x3e \x28 xJCU_Topic \x3csubstring\x3e \x60Professional Experience\x60 \x3cAND\x3e  xJCU_Topic \x3csubstring\x3e \x60Resource\x60\x29','cspSortSpec==xJCU_Heading asc dDocTitle asc','secondaryUrlVariableField==region1');
g_navNode_3_1_2=g_navNode_3_1.addNode('635','Rural and Remote Placements',ssUrlPrefix + 'profex/students/rural/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspNavImage==JCUPRD_017646','cspNavImgURL==../../../index.htm','cspQueryText==xWebsites \x3ccontains\x3e \x60education\x60  \x3cAND\x3e  \x28xJCU_Topic \x3csubstring\x3e \x60Professional Experience\x60 \x3cAND\x3e  xJCU_Topic \x3csubstring\x3e \x60Rural\x60\x29','cspSortSpec==dDocTitle asc','secondaryUrlVariableField==region1');
g_navNode_3_1_3=g_navNode_3_1.addNode('1601','Specific Information for ECE Online Students',ssUrlPrefix + 'profex/students/ece/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspNavImage==JCUPRD_017646','cspNavImgURL==../../../index.htm','cspQueryText==xWebsites \x3ccontains\x3e \x60education\x60  \x3cAND\x3e  xJCU_Topic \x3csubstring\x3e \x60ECE\x60','cspSortSpec==xJCUSequence asc');
g_navNode_3_2=g_navNode_3.addNode('598','Information for Schools',ssUrlPrefix + 'profex/schools/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspNavImage==JCUPRD_017646','cspNavImgURL==../../index.htm','cspQueryText==dDocType \x3csubstring\x3e \x60foo\x60','secondaryUrlVariableField==region1');
g_navNode_3_2_0=g_navNode_3_2.addNode('637','FAQs',ssUrlPrefix + 'profex/schools/faqs/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspNavImage==JCUPRD_017646','cspNavImgURL==../../../index.htm','cspQueryText==dDocType \x3cmatches\x3e \x60FAQs\x60  \x3cAND\x3e  xAudience \x3csubstring\x3e \x60Staff_all\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60education\x60  \x3cAND\x3e  xJCU_Topic \x3csubstring\x3e \x60Professional Experience\x60','cspSortSpec==dDocTitle asc','secondaryUrlVariableField==region1');
g_navNode_3_2_1=g_navNode_3_2.addNode('638','Reports and Reporting Procedures',ssUrlPrefix + 'profex/schools/reports/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspDisplayField==\x3c\x24xJCU_Heading\x24\x3e','cspNavImage==JCUPRD_017646','cspNavImgURL==../../../index.htm','cspQueryText==xAudience \x3csubstring\x3e \x60Staff_all\x60  \x3cAND\x3e  xSubject \x3csubstring\x3e \x60report\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60education\x60  \x3cAND\x3e  xJCU_Topic \x3csubstring\x3e \x60Professional Experience\x60\x3cAND\x3e  \x28NOT \x28 xJCU_Topic \x3csubstring\x3e \x60Cairns\x60 \x3cOR\x3e  xJCU_Topic \x3csubstring\x3e \x60Townsville\x60\x29\x29','cspSortSpec==xJCU_Heading asc xJCUSequence asc','secondaryUrlVariableField==region1');
g_navNode_3_2_1_0=g_navNode_3_2_1.addNode('2418','Cairns Reports',ssUrlPrefix + 'profex/schools/reports/cns/index.htm','cspDisplayField==\x3c\x24xJCU_Heading\x24\x3e','cspQueryText==xAudience \x3csubstring\x3e \x60Staff_all\x60  \x3cAND\x3e  xSubject \x3csubstring\x3e \x60report\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60education\x60  \x3cAND\x3e  xJCU_Topic \x3csubstring\x3e \x60Cairns\x60 \x3cAND\x3e  xJCU_Topic \x3csubstring\x3e \x60Professional Experience\x60','cspSortSpec==xJCU_Heading asc xJCUSequence asc','secondaryUrlVariableField==region1');
g_navNode_3_2_1_1=g_navNode_3_2_1.addNode('2419','Townsville Reports',ssUrlPrefix + 'profex/schools/reports/tvl/index.htm','cspDisplayField==\x3c\x24xJCU_Heading\x24\x3e','cspQueryText==xAudience \x3csubstring\x3e \x60Staff_all\x60  \x3cAND\x3e  xSubject \x3csubstring\x3e \x60report\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60education\x60  \x3cAND\x3e  xJCU_Topic \x3csubstring\x3e \x60Townsville\x60 \x3cAND\x3e  xJCU_Topic \x3csubstring\x3e \x60Professional Experience\x60','cspSortSpec==xJCU_Heading asc xJCUSequence asc','secondaryUrlVariableField==region1');
g_navNode_3_2_2=g_navNode_3_2.addNode('639','At Risk Notification',ssUrlPrefix + 'profex/schools/risk/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspNavImage==JCUPRD_017646','cspNavImgURL==../../../index.htm','cspQueryText==xAudience \x3csubstring\x3e \x60Staff_all\x60  \x3cAND\x3e  xSubject \x3csubstring\x3e \x60at risk\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60education\x60  \x3cAND\x3e  xJCU_Topic \x3csubstring\x3e \x60Professional Experience\x60','cspSortSpec==xJCUSequence asc','secondaryUrlVariableField==region1');
g_navNode_3_2_3=g_navNode_3_2.addNode('1593','Supervising Teachers Payment Claim Form',ssUrlPrefix + 'profex/schools/payclaim/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspNavImage==JCUPRD_017646','cspNavImgURL==../../../index.htm','cspQueryText==xWebsites \x3ccontains\x3e \x60education\x60  \x3cAND\x3e  xJCU_Topic \x3csubstring\x3e \x60Salary\x60','cspSortSpec==dDocTitle asc','secondaryUrlVariableField==region1');
g_navNode_3_3=g_navNode_3.addNode('599','Blue Cards',ssUrlPrefix + 'profex/bluecard/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspNavImage==JCUPRD_017646','cspNavImgURL==../../index.htm','cspQueryText==xWebsites \x3ccontains\x3e \x60education\x60  \x3cAND\x3e \x28 xJCU_Topic \x3csubstring\x3e \x60Professional Experience\x60 \x3cAND\x3e xJCU_Topic \x3csubstring\x3e \x60Blue card\x60\x29','cspSortSpec==xJCUSequence asc','secondaryUrlVariableField==region1');
g_navNode_3_4=g_navNode_3.addNode('634','Internships',ssUrlPrefix + 'profex/internships/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspNavImage==JCUPRD_017646','cspNavImgURL==../../../index.htm','cspQueryText==xSubject \x3csubstring\x3e \x60internship\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60education\x60  \x3cAND\x3e  xJCU_Topic \x3csubstring\x3e \x60Professional Experience\x60','cspSortSpec==xJCUSequence asc','secondaryUrlVariableField==region1');
g_navNode_3_5=g_navNode_3.addNode('600','Handbooks',ssUrlPrefix + 'profex/handbook/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspDisplayField==\x3c\x24xJCU_Heading\x24\x3e','cspNavImage==JCUPRD_017646','cspNavImgURL==../../index.htm','cspQueryText==dDocType \x3csubstring\x3e \x60Handbook\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60education\x60  \x3cAND\x3e  xJCU_Topic \x3csubstring\x3e \x60Professional Experience\x60','cspSortSpec==xJCU_Heading asc xJCUSequence asc','secondaryUrlVariableField==region1');
g_navNode_3_6=g_navNode_3.addNode('2171','Professional Experience Advisory Committee \x28PEAC\x29',ssUrlPrefix + 'profex/peac/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspDisplayField==\x3c\x24xJCU_Heading\x24\x3e','cspNavImage==JCUPRD_017646','cspNavImgURL==../../index.htm','cspQueryText==xJCUContentGrouping \x3csubstring\x3e \x60Committees\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60education\x60  \x3cAND\x3e  xJCU_Topic \x3csubstring\x3e \x60Professional Experience\x60','cspResultCount==30','cspSortSpec==xJCU_Heading asc xJCUSequence asc','secondaryUrlVariableField==region1');
g_navNode_4=g_navNode_Root.addNode('1218','Prospective Students',ssUrlPrefix + 'prospective/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspImageQuery==dSecurityGroup \x3cmatches\x3e \x60Public\x60  \x3cAND\x3e  xJCUContentCategory \x3csubstring\x3e \x60Object\x60  \x3cAND\x3e  xJCUContentGrouping \x3csubstring\x3e \x60Graphic Object\x60  \x3cAND\x3e  xContentType \x3csubstring\x3e \x60WebGraphics\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60education\x60  \x3cAND\x3e  xJCU_Topic \x3csubstring\x3e \x60Promotion\x60','cspNavImage==JCUPRD_017646','cspNavImgURL==../index.htm','cspQueryText==\x3cNOT\x3e\x28dDocType \x3csubstring\x3e \x60Degrees_programs\x60\x29  \x3cAND\x3exAudience \x3csubstring\x3e \x60Students_prospective\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60education\x60','cspSortSpec==xJCUSequence asc','secondaryUrlVariableField==region1');
g_navNode_5=g_navNode_Root.addNode('587','Research',ssUrlPrefix + 'research/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspImageQuery==dSecurityGroup \x3cmatches\x3e \x60Public\x60  \x3cAND\x3e  xJCUContentCategory \x3csubstring\x3e \x60Object\x60  \x3cAND\x3e  xJCUContentGrouping \x3csubstring\x3e \x60Graphic Object\x60  \x3cAND\x3e  xContentType \x3csubstring\x3e \x60WebGraphics\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60education\x60  \x3cAND\x3e  xJCU_Topic \x3csubstring\x3e \x60Promotion\x60','cspNavImage==JCUPRD_017646','cspNavImgURL==../index.htm','cspQueryText==xJCUContentCategory \x3csubstring\x3e \x60Academic\x60  \x3cAND\x3e  xJCUContentGrouping \x3csubstring\x3e \x60Research\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60education\x60','cspSortSpec==xJCUSequence asc','secondaryUrlVariableField==region1');
g_navNode_6=g_navNode_Root.addNode('586','Staff',ssUrlPrefix + 'staff/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspDisplayField==\x3c\x24xJCU_Heading\x24\x3e','cspImageQuery==dSecurityGroup \x3cmatches\x3e \x60Public\x60  \x3cAND\x3e  xJCUContentCategory \x3csubstring\x3e \x60Object\x60  \x3cAND\x3e  xJCUContentGrouping \x3csubstring\x3e \x60Graphic Object\x60  \x3cAND\x3e  xContentType \x3csubstring\x3e \x60WebGraphics\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60education\x60  \x3cAND\x3e  xJCU_Topic \x3csubstring\x3e \x60Promotion\x60','cspNavImage==JCUPRD_017646','cspNavImgURL==../index.htm','cspQueryText==dDocType \x3csubstring\x3e \x60Staff_profiles\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60education\x60','cspSortSpec==xJCUSequence asc dDocTitle asc ','secondaryUrlVariableField==region1');
g_navNode_7=g_navNode_Root.addNode('1226','Teaching and Learning',ssUrlPrefix + 'tli/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspNavImage==JCUPRD_017646','cspNavImgURL==../index.htm','cspQueryText==dDocType \x3csubstring\x3e \x60foo\x60','secondaryUrlVariableField==region1');
g_navNode_7_0=g_navNode_7.addNode('1229','Staff Teaching and Learning Information',ssUrlPrefix + 'tli/staff/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspDisplayField==\x3c\x24xJCU_Heading\x24\x3e','cspNavImage==JCUPRD_017646','cspNavImgURL==../../index.htm','cspQueryText==xAudience \x3csubstring\x3e \x60Staff_all\x60  \x3cAND\x3e  xSubject \x3csubstring\x3e \x60teaching and learning\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60education\x60','cspSortSpec==xJCUSequence asc dDocTitle asc','secondaryUrlVariableField==region1');
g_navNode_7_1=g_navNode_7.addNode('1231','Student Teaching and Learning Information',ssUrlPrefix + 'tli/student/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspDisplayField==\x3c\x24xJCU_Heading\x24\x3e','cspNavImage==JCUPRD_017646','cspNavImgURL==../../index.htm','cspQueryText==xAudience \x3csubstring\x3e \x60Students_all\x60  \x3cAND\x3e  xSubject \x3csubstring\x3e \x60teaching and learning\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60education\x60','cspSortSpec==xJCUSequence asc dDocTitle asc','secondaryUrlVariableField==region1');
g_navNode_8=g_navNode_Root.addNode('589','Undergraduate Courses',ssUrlPrefix + 'undergrad/index.htm','cspBannerImage==jcuprd_016369','cspBannerURL==http\x3a//www.jcu.edu.au/faess/','cspDisplayField==\x3c\x24xJCU_Heading\x24\x3e','cspNavImage==JCUPRD_017646','cspNavImgURL==../index.htm','cspQueryText==dDocType \x3csubstring\x3e \x60Degrees_programs\x60   \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60education\x60','cspSortSpec==sJCUSequence asc dDocTitle asc','secondaryUrlVariableField==region1');
