/////////////////////////////////////////////////////////////////////////////
// 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 eqPos = argValues[i].indexOf("==");
		var attrName = argValues[i].substring(0,eqPos);
		var attrValue = argValues[i].substring(eqPos+2);

		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 eqPos = argValues[i].indexOf("==");
		var attrName = argValues[i].substring(0,eqPos);
		var attrValue = argValues[i].substring(eqPos+2);

		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('5842','Home',ssUrlPrefix + 'home.html',null);
g_navNode_0=g_navNode_Root.addNode('14071','About',ssUrlPrefix + 'about/home.html','ShowWhatsInside==true');
g_navNode_0_0=g_navNode_0.addNode('7482','Community Report',ssUrlPrefix + 'about/report/home.html','contributorOnly==false');
g_navNode_0_1=g_navNode_0.addNode('7483','Employment',ssUrlPrefix + 'about/employment/home.html','ShowWhatsInside==false','contributorOnly==false');
g_navNode_0_2=g_navNode_0.addNode('7481','Faculty',ssUrlPrefix + 'about/faculty/home.html','contributorOnly==false');
g_navNode_0_3=g_navNode_0.addNode('7480','Mission and Vision',ssUrlPrefix + 'about/mission/home.html','contributorOnly==false');
g_navNode_0_4=g_navNode_0.addNode('7484','Contact Us',ssUrlPrefix + 'about/contact/home.html','ShowRelatedLinks==true','contributorOnly==false');
g_navNode_1=g_navNode_Root.addNode('7355','Education',ssUrlPrefix + 'education/home.html','ShowRelatedLinks==true','ShowRightNavImage==false','ShowWhatsInside==true','contributorOnly==false');
g_navNode_1_0=g_navNode_1.addNode('14089','Residency Programs',ssUrlPrefix + 'education/residency/home.html','ShowRightNavImage==true','ShowWhatsInside==true');
g_navNode_1_0_0=g_navNode_1_0.addNode('9625','Duluth',ssUrlPrefix + 'education/residency/duluth/home.html');
g_navNode_1_0_1=g_navNode_1_0.addNode('14350','Mankato',ssUrlPrefix + 'education/residency/mankato/home.html','ShowDownloads==true','ShowRelatedLinks==true','ShowWhatsInside==false');
g_navNode_1_0_1_0=g_navNode_1_0_1.addNode('14364','Curriculum',ssUrlPrefix + 'education/residency/mankato/rotations/home.html');
g_navNode_1_0_1_1=g_navNode_1_0_1.addNode('14351','Faculty',ssUrlPrefix + 'education/residency/mankato/faculty/home.html');
g_navNode_1_0_1_2=g_navNode_1_0_1.addNode('11122','Manuals',ssUrlPrefix + 'education/residency/mankato/manuals/home.html','contributorOnly==false');
g_navNode_1_0_1_3=g_navNode_1_0_1.addNode('146553','Medical Students',ssUrlPrefix + 'education/residency/mankato/clerkship/home.html','ShowRelatedLinks==true');
g_navNode_1_0_1_4=g_navNode_1_0_1.addNode('107316','Residents',ssUrlPrefix + 'education/residency/mankato/residents/home.html');
g_navNode_1_0_1_5=g_navNode_1_0_1.addNode('11956','Where We Practice',ssUrlPrefix + 'education/residency/mankato/where/home.html','ShowRelatedLinks==true');
g_navNode_1_0_1_6=g_navNode_1_0_1.addNode('14366','Contact Us',ssUrlPrefix + 'education/residency/mankato/contact/home.html');
g_navNode_1_0_2=g_navNode_1_0.addNode('14123','Methodist',ssUrlPrefix + 'education/residency/methodisthospital/home.html','ShowDownloads==true','ShowRelatedLinks==true','ShowWhatsInside==false');
g_navNode_1_0_2_0=g_navNode_1_0_2.addNode('112017','Curriculum ',ssUrlPrefix + 'education/residency/methodisthospital/curriculum/home.html');
g_navNode_1_0_2_1=g_navNode_1_0_2.addNode('14129','Faculty',ssUrlPrefix + 'education/residency/methodisthospital/faculty/home.html','ShowWhatsInside==true');
g_navNode_1_0_2_1_0=g_navNode_1_0_2_1.addNode('12412','Community Preceptors',ssUrlPrefix + 'education/residency/methodisthospital/faculty/preceptors/home.html');
g_navNode_1_0_2_2=g_navNode_1_0_2.addNode('11126','Manuals',ssUrlPrefix + 'education/residency/methodisthospital/manuals/home.html','contributorOnly==false');
g_navNode_1_0_2_3=g_navNode_1_0_2.addNode('12499','Medical Students',ssUrlPrefix + 'education/residency/methodisthospital/medstudents/home.html');
g_navNode_1_0_2_4=g_navNode_1_0_2.addNode('14126','Residents',ssUrlPrefix + 'education/residency/methodisthospital/residents/home.html','ShowWhatsInside==true');
g_navNode_1_0_2_4_14=g_navNode_1_0_2_4.addNode('12144','Activities',ssUrlPrefix + 'education/residency/methodisthospital/residents/activities/home.html');
g_navNode_1_0_2_4_15=g_navNode_1_0_2_4.addNode('12184','Survey',ssUrlPrefix + 'education/residency/methodisthospital/residents/survey/home.html','ShowWhatsInside==true');
g_navNode_1_0_2_5=g_navNode_1_0_2.addNode('12142','Where We Practice',ssUrlPrefix + 'education/residency/methodisthospital/where/home.html','ShowWhatsInside==true');
g_navNode_1_0_2_5_0=g_navNode_1_0_2_5.addNode('114058','Clinic',ssUrlPrefix + 'education/residency/methodisthospital/where/resclinic/home.html','ShowWhatsInside==true');
g_navNode_1_0_2_5_1=g_navNode_1_0_2_5.addNode('111815','Community',ssUrlPrefix + 'education/residency/methodisthospital/where/slp/home.html','ShowWhatsInside==true');
g_navNode_1_0_2_5_2=g_navNode_1_0_2_5.addNode('14127','Hospital',ssUrlPrefix + 'education/residency/methodisthospital/where/hospital/home.html','ShowWhatsInside==true');
g_navNode_1_0_2_6=g_navNode_1_0_2.addNode('110514','Contact Us',ssUrlPrefix + 'education/residency/methodisthospital/contact/home.html','ShowRelatedLinks==true','ShowWhatsInside==false');
g_navNode_1_0_3=g_navNode_1_0.addNode('14163','North Memorial',ssUrlPrefix + 'education/residency/northmemorial/home.html','ShowDownloads==true','ShowRelatedLinks==true','ShowWhatsInside==false');
g_navNode_1_0_3_0=g_navNode_1_0_3.addNode('152589','Call',ssUrlPrefix + 'education/residency/northmemorial/call/home.html');
g_navNode_1_0_3_1=g_navNode_1_0_3.addNode('14164','Curriculum',ssUrlPrefix + 'education/residency/northmemorial/program/home.html','ShowWhatsInside==true');
g_navNode_1_0_3_1_0=g_navNode_1_0_3_1.addNode('14171','First Year',ssUrlPrefix + 'education/residency/northmemorial/program/firstyear/home.html','ShowWhatsInside==true');
g_navNode_1_0_3_1_0_0=g_navNode_1_0_3_1_0.addNode('14174','Rotations',ssUrlPrefix + 'education/residency/northmemorial/program/firstyear/rotations/home.html');
g_navNode_1_0_3_1_1=g_navNode_1_0_3_1.addNode('14175','Second and Third Years',ssUrlPrefix + 'education/residency/northmemorial/program/secondthirdyear/home.html','ShowWhatsInside==true');
g_navNode_1_0_3_1_1_0=g_navNode_1_0_3_1_1.addNode('14178','Second-Year Rotations',ssUrlPrefix + 'education/residency/northmemorial/program/secondthirdyear/secondyearrotations/home.html');
g_navNode_1_0_3_1_1_1=g_navNode_1_0_3_1_1.addNode('14179','Third-Year Rotations',ssUrlPrefix + 'education/residency/northmemorial/program/secondthirdyear/thirdyearrotations/home.html');
g_navNode_1_0_3_1_2=g_navNode_1_0_3_1.addNode('14169','Longitudinal',ssUrlPrefix + 'education/residency/northmemorial/program/longitudinal/home.html');
g_navNode_1_0_3_1_3=g_navNode_1_0_3_1.addNode('14181','Workshops and Conferences',ssUrlPrefix + 'education/residency/northmemorial/program/conference/home.html');
g_navNode_1_0_3_2=g_navNode_1_0_3.addNode('14183','Faculty',ssUrlPrefix + 'education/residency/northmemorial/faculty/home.html');
g_navNode_1_0_3_3=g_navNode_1_0_3.addNode('11139','Manuals',ssUrlPrefix + 'education/residency/northmemorial/manuals/home.html','contributorOnly==false');
g_navNode_1_0_3_4=g_navNode_1_0_3.addNode('14199','Residents',ssUrlPrefix + 'education/residency/northmemorial/residents/home.html');
g_navNode_1_0_3_5=g_navNode_1_0_3.addNode('13802','Where We Practice',ssUrlPrefix + 'education/residency/northmemorial/where/home.html','ShowWhatsInside==false');
g_navNode_1_0_3_6=g_navNode_1_0_3.addNode('14205','Contact Us ',ssUrlPrefix + 'education/residency/northmemorial/links/home.html');
g_navNode_1_0_4=g_navNode_1_0.addNode('14091','Smiley\'s',ssUrlPrefix + 'education/residency/smileys/home.html','ShowDownloads==true','ShowRelatedLinks==true','ShowWhatsInside==false');
g_navNode_1_0_4_0=g_navNode_1_0_4.addNode('14093','Curriculum',ssUrlPrefix + 'education/residency/smileys/curriculum/home.html','ShowWhatsInside==true');
g_navNode_1_0_4_0_1=g_navNode_1_0_4_0.addNode('12273','Ambulatory Family Medicine',ssUrlPrefix + 'education/residency/smileys/curriculum/ambulatory/home.html');
g_navNode_1_0_4_0_2=g_navNode_1_0_4_0.addNode('12294','Call',ssUrlPrefix + 'education/residency/smileys/curriculum/call/home.html');
g_navNode_1_0_4_0_3=g_navNode_1_0_4_0.addNode('12277','Electives',ssUrlPrefix + 'education/residency/smileys/curriculum/electives/home.html');
g_navNode_1_0_4_0_4=g_navNode_1_0_4_0.addNode('12274','Inpatient Family Medicine',ssUrlPrefix + 'education/residency/smileys/curriculum/inpatient/Home.html');
g_navNode_1_0_4_0_5=g_navNode_1_0_4_0.addNode('12275','OB/GYN',ssUrlPrefix + 'education/residency/smileys/curriculum/obgyn/home.html');
g_navNode_1_0_4_0_6=g_navNode_1_0_4_0.addNode('12276','Pediatrics',ssUrlPrefix + 'education/residency/smileys/curriculum/pediatrics/home.html');
g_navNode_1_0_4_0_7=g_navNode_1_0_4_0.addNode('12287','Procedures',ssUrlPrefix + 'education/residency/smileys/curriculum/procedures/home.html');
g_navNode_1_0_4_0_8=g_navNode_1_0_4_0.addNode('12292','Teaching Conferences',ssUrlPrefix + 'education/residency/smileys/curriculum/teaching/home.html');
g_navNode_1_0_4_1=g_navNode_1_0_4.addNode('14096','Faculty',ssUrlPrefix + 'education/residency/smileys/faculty/home.html');
g_navNode_1_0_4_2=g_navNode_1_0_4.addNode('11142','Manuals',ssUrlPrefix + 'education/residency/smileys/manuals/home.html','contributorOnly==false');
g_navNode_1_0_4_4=g_navNode_1_0_4.addNode('14112','Residents',ssUrlPrefix + 'education/residency/smileys/residents/home.html','ShowWhatsInside==true');
g_navNode_1_0_4_4_0=g_navNode_1_0_4_4.addNode('14115','Why Smiley\'s',ssUrlPrefix + 'education/residency/smileys/residents/choose/home.html','ShowWhatsInside==true');
g_navNode_1_0_4_5=g_navNode_1_0_4.addNode('14092','Where We Practice',ssUrlPrefix + 'education/residency/smileys/where/home.html','ShowWhatsInside==true');
g_navNode_1_0_4_5_0=g_navNode_1_0_4_5.addNode('14116','Community',ssUrlPrefix + 'education/residency/smileys/where/community/home.html','ShowWhatsInside==true');
g_navNode_1_0_4_6=g_navNode_1_0_4.addNode('14119','Contact Us',ssUrlPrefix + 'education/residency/smileys/contact/home.html');
g_navNode_1_0_5=g_navNode_1_0.addNode('204731','St. Cloud',ssUrlPrefix + 'education/residency/stcloud/home.html','ShowWhatsInside==false');
g_navNode_1_0_6=g_navNode_1_0.addNode('14217','St. John\'s',ssUrlPrefix + 'education/residency/stjohnshospital/home.html','ShowDownloads==true','ShowRelatedLinks==true','ShowWhatsInside==false');
g_navNode_1_0_6_0=g_navNode_1_0_6.addNode('14272','Call',ssUrlPrefix + 'education/residency/stjohnshospital/call/home.html');
g_navNode_1_0_6_1=g_navNode_1_0_6.addNode('14237','Curriculum',ssUrlPrefix + 'education/residency/stjohnshospital/curriculum/home.html','ShowWhatsInside==true');
g_navNode_1_0_6_1_0=g_navNode_1_0_6_1.addNode('14239','Curriculum Details',ssUrlPrefix + 'education/residency/stjohnshospital/curriculum/details/home.html');
g_navNode_1_0_6_1_1=g_navNode_1_0_6_1.addNode('14269','Noon Conferences',ssUrlPrefix + 'education/residency/stjohnshospital/curriculum/noonconference/home.html');
g_navNode_1_0_6_1_2=g_navNode_1_0_6_1.addNode('14274','Workshops and Conferences',ssUrlPrefix + 'education/residency/stjohnshospital/curriculum/workshops/home.html');
g_navNode_1_0_6_2=g_navNode_1_0_6.addNode('14275','Faculty',ssUrlPrefix + 'education/residency/stjohnshospital/faculty/home.html');
g_navNode_1_0_6_3=g_navNode_1_0_6.addNode('14296','Manuals',ssUrlPrefix + 'education/residency/stjohnshospital/manuals/home.html','contributorOnly==false');
g_navNode_1_0_6_4=g_navNode_1_0_6.addNode('116089','Medical Students',ssUrlPrefix + 'education/residency/stjohnshospital/Medical_Students/home.html');
g_navNode_1_0_6_5=g_navNode_1_0_6.addNode('14291','Residents',ssUrlPrefix + 'education/residency/stjohnshospital/residents/home.html');
g_navNode_1_0_6_7=g_navNode_1_0_6.addNode('13601','Where We Practice',ssUrlPrefix + 'education/residency/stjohnshospital/where/home.html','ShowRelatedLinks==true','ShowWhatsInside==true');
g_navNode_1_0_6_7_0=g_navNode_1_0_6_7.addNode('14223','Clinic',ssUrlPrefix + 'education/residency/stjohnshospital/where/clinic/home.html','ShowRelatedLinks==false','ShowWhatsInside==true');
g_navNode_1_0_6_7_0_0=g_navNode_1_0_6_7_0.addNode('14224','In-House Labs',ssUrlPrefix + 'education/residency/stjohnshospital/where/clinic/inhouselab/home.html');
g_navNode_1_0_6_7_0_1=g_navNode_1_0_6_7_0.addNode('14226','In-House Procedures',ssUrlPrefix + 'education/residency/stjohnshospital/where/clinic/inhousep/home.html');
g_navNode_1_0_6_7_1=g_navNode_1_0_6_7.addNode('14220','Hospital',ssUrlPrefix + 'education/residency/stjohnshospital/where/hospital/home.html');
g_navNode_1_0_6_7_2=g_navNode_1_0_6_7.addNode('156867','Community',ssUrlPrefix + 'education/residency/stjohnshospital/where/Community/home.html');
g_navNode_1_0_6_8=g_navNode_1_0_6.addNode('14307','Contact Us',ssUrlPrefix + 'education/residency/stjohnshospital/info/home.html');
g_navNode_1_0_7=g_navNode_1_0.addNode('14313','St. Joseph\'s',ssUrlPrefix + 'education/residency/stjosephs/home.html','ShowDownloads==true','ShowRelatedLinks==true','ShowWhatsInside==false');
g_navNode_1_0_7_0=g_navNode_1_0_7.addNode('14323','Call',ssUrlPrefix + 'education/residency/stjosephs/call/home.html','ShowWhatsInside==true');
g_navNode_1_0_7_0_0=g_navNode_1_0_7_0.addNode('12793','Night Float',ssUrlPrefix + 'education/residency/stjosephs/call/nightfloat/home.html');
g_navNode_1_0_7_1=g_navNode_1_0_7.addNode('14321','Curriculum',ssUrlPrefix + 'education/residency/stjosephs/curriculum/home.html','ShowWhatsInside==true');
g_navNode_1_0_7_1_0=g_navNode_1_0_7_1.addNode('12852','First-year',ssUrlPrefix + 'education/residency/stjosephs/curriculum/first/home.html');
g_navNode_1_0_7_1_1=g_navNode_1_0_7_1.addNode('12853','Second- and Third-year',ssUrlPrefix + 'education/residency/stjosephs/curriculum/second/home.html');
g_navNode_1_0_7_1_2=g_navNode_1_0_7_1.addNode('12854','Electives',ssUrlPrefix + 'education/residency/stjosephs/curriculum/electives/home.html');
g_navNode_1_0_7_1_3=g_navNode_1_0_7_1.addNode('12855','Didactic',ssUrlPrefix + 'education/residency/stjosephs/curriculum/didactic/home.html');
g_navNode_1_0_7_2=g_navNode_1_0_7.addNode('14331','Faculty',ssUrlPrefix + 'education/residency/stjosephs/faculty/home.html');
g_navNode_1_0_7_3=g_navNode_1_0_7.addNode('11143','Manuals',ssUrlPrefix + 'education/residency/stjosephs/manuals/home.html');
g_navNode_1_0_7_4=g_navNode_1_0_7.addNode('14345','Residents',ssUrlPrefix + 'education/residency/stjosephs/residents/home.html');
g_navNode_1_0_7_5=g_navNode_1_0_7.addNode('12774','Where We Practice',ssUrlPrefix + 'education/residency/stjosephs/where/home.html','ShowRelatedLinks==true','ShowWhatsInside==true');
g_navNode_1_0_7_5_0=g_navNode_1_0_7_5.addNode('110898','Clinic',ssUrlPrefix + 'education/residency/stjosephs/where/clinic/home.html');
g_navNode_1_0_7_6=g_navNode_1_0_7.addNode('14346','Contact Us',ssUrlPrefix + 'education/residency/stjosephs/contactus/home.html');
g_navNode_1_0_8=g_navNode_1_0.addNode('14367','Apply',ssUrlPrefix + 'education/residency/to_apply/home.html','ShowRightNavImage==true','ShowWhatsInside==true');
g_navNode_1_0_8_0=g_navNode_1_0_8.addNode('14369','Interview',ssUrlPrefix + 'education/residency/to_apply/interview/home.html','ShowWhatsInside==true');
g_navNode_1_0_8_0_0=g_navNode_1_0_8_0.addNode('149939','Locations',ssUrlPrefix + 'education/residency/to_apply/interview/Directions/home.html','ShowWhatsInside==false');
g_navNode_1_0_8_0_1=g_navNode_1_0_8_0.addNode('14370','Lodging',ssUrlPrefix + 'education/residency/to_apply/interview/inteviewlodging/home.html');
g_navNode_1_0_8_1=g_navNode_1_0_8.addNode('14371','Map',ssUrlPrefix + 'education/residency/to_apply/map/home.html','ShowWhatsInside==true');
g_navNode_1_0_9=g_navNode_1_0.addNode('93193','Contact Us',ssUrlPrefix + 'education/residency/Contact_Us/home.html');
g_navNode_1_1=g_navNode_1.addNode('7707','Fellowships',ssUrlPrefix + 'education/fellowships/home.html','ShowRelatedLinks==true','ShowWhatsInside==true','contributorOnly==false');
g_navNode_1_1_0=g_navNode_1_1.addNode('190085','Hospice and Palliative Medicine Fellowship',ssUrlPrefix + 'education/fellowships/fellowship/home.html','ShowRelatedLinks==true','ShowWhatsInside==true');
g_navNode_1_1_0_0=g_navNode_1_1_0.addNode('190261','Fellow',ssUrlPrefix + 'education/fellowships/fellowship/fellows/home.html');
g_navNode_1_1_0_1=g_navNode_1_1_0.addNode('190279','Benefits',ssUrlPrefix + 'education/fellowships/fellowship/fellowshipbenefits/home.html');
g_navNode_1_1_0_2=g_navNode_1_1_0.addNode('11090','Manuals',ssUrlPrefix + 'education/fellowships/fellowship/manuals/home.html');
g_navNode_1_1_0_3=g_navNode_1_1_0.addNode('190270','Rotations',ssUrlPrefix + 'education/fellowships/fellowship/rotations/home.html');
g_navNode_1_1_0_4=g_navNode_1_1_0.addNode('194152','Selection Criteria and Application',ssUrlPrefix + 'education/fellowships/fellowship/application/home.html');
g_navNode_1_1_0_5=g_navNode_1_1_0.addNode('190286','Where We Practice',ssUrlPrefix + 'education/fellowships/fellowship/practicesites/home.html');
g_navNode_1_1_0_6=g_navNode_1_1_0.addNode('190295','Contact Us',ssUrlPrefix + 'education/fellowships/fellowship/contact/home.html');
g_navNode_1_2=g_navNode_1.addNode('14084','Medical Student Education',ssUrlPrefix + 'education/mededucation/home.html','ShowRelatedLinks==false','ShowWhatsInside==true');
g_navNode_1_2_0=g_navNode_1_2.addNode('30623','Advisors',ssUrlPrefix + 'education/mededucation/advisors/home.html');
g_navNode_1_2_1=g_navNode_1_2.addNode('30626','Awards',ssUrlPrefix + 'education/mededucation/awards/home.html');
g_navNode_1_2_2=g_navNode_1_2.addNode('41062','Courses',ssUrlPrefix + 'education/mededucation/courses/home.html','ShowRelatedLinks==false','ShowWhatsInside==true');
g_navNode_1_2_2_0=g_navNode_1_2_2.addNode('142789','Scholarships',ssUrlPrefix + 'education/mededucation/courses/Medical_Student_Scholarship/home.html','ShowRelatedLinks==true');
g_navNode_1_2_2_1=g_navNode_1_2_2.addNode('30735','Visiting Medical Students',ssUrlPrefix + 'education/mededucation/courses/visiting/home.html','ShowWhatsInside==true');
g_navNode_1_2_3=g_navNode_1_2.addNode('82328','FMIG',ssUrlPrefix + 'education/mededucation/fmig/home.html','ShowRelatedLinks==true','ShowWhatsInside==true');
g_navNode_1_2_3_0=g_navNode_1_2_3.addNode('30720','Events',ssUrlPrefix + 'education/mededucation/fmig/events/home.html');
g_navNode_1_2_3_1=g_navNode_1_2_3.addNode('11641','Contact Us',ssUrlPrefix + 'education/mededucation/fmig/contact/index.htm');
g_navNode_1_2_4=g_navNode_1_2.addNode('11268','Contact Us',ssUrlPrefix + 'education/mededucation/contact/home.html','ShowWhatsInside==true');
g_navNode_1_2_4_0=g_navNode_1_2_4.addNode('30617','Faculty and Staff',ssUrlPrefix + 'education/mededucation/contact/whoweare/home.html');
g_navNode_1_3=g_navNode_1.addNode('53898','Department Courses',ssUrlPrefix + 'education/deptcourses/home.html');
g_navNode_1_4=g_navNode_1.addNode('7820','Continuing Medical Education',ssUrlPrefix + 'education/continuing/home.html','contributorOnly==false');
g_navNode_1_5=g_navNode_1.addNode('136451','Grand Rounds',ssUrlPrefix + 'education/grandrounds/home.html');
g_navNode_2=g_navNode_Root.addNode('7447','News and Events',ssUrlPrefix + 'news/home.html','ShowRelatedLinks==false','ShowRightNavImage==true','ShowWhatsInside==true','contributorOnly==false');
g_navNode_2_0=g_navNode_2.addNode('7475','Events',ssUrlPrefix + 'news/events/home.html','contributorOnly==false');
g_navNode_2_1=g_navNode_2.addNode('7476','People',ssUrlPrefix + 'news/people/home.html','ShowWhatsInside==true','contributorOnly==false');
g_navNode_2_1_0=g_navNode_2_1.addNode('12683','van Ryn studies stereotyping by medical providers',ssUrlPrefix + 'news/people/vanryn/home.html');
g_navNode_2_1_1=g_navNode_2_1.addNode('11591','91\x25 of 2009 graduates practice in MN',ssUrlPrefix + 'news/people/09grads/home.html');
g_navNode_2_1_3=g_navNode_2_1.addNode('10919','Torkelson studies Tibetan medicine',ssUrlPrefix + 'news/people/torkelson/home.html');
g_navNode_2_1_4=g_navNode_2_1.addNode('9304','Residents honored at  2009 commencement',ssUrlPrefix + 'news/people/commencement09/home.html');
g_navNode_2_1_5=g_navNode_2_1.addNode('8362','Vainio featured in health documentary',ssUrlPrefix + 'news/people/vainio/home.html');
g_navNode_2_2=g_navNode_2.addNode('7423','Family Medicine Connection',ssUrlPrefix + 'news/fmconnection/home.html','contributorOnly==false');
g_navNode_3=g_navNode_Root.addNode('173446','Program in Human Sexuality',ssUrlPrefix + 'phs1/home.html');
g_navNode_4=g_navNode_Root.addNode('14086','Research',ssUrlPrefix + 'research/home.html','ShowRelatedLinks==true','ShowRightNavImage==true','ShowWhatsInside==true');
g_navNode_4_0=g_navNode_4.addNode('176699','Center of Excellence in Primary Care',ssUrlPrefix + 'research/coepc/home.html');
g_navNode_4_1=g_navNode_4.addNode('34344','Courses',ssUrlPrefix + 'research/facultydevel/home.html');
g_navNode_4_2=g_navNode_4.addNode('34337','Faculty',ssUrlPrefix + 'research/faculty/home.html');
g_navNode_4_3=g_navNode_4.addNode('176890','IRB Requirements',ssUrlPrefix + 'research/irb/home.html');
g_navNode_4_4=g_navNode_4.addNode('127290','Services',ssUrlPrefix + 'research/services/home.html','ShowWhatsInside==true');
g_navNode_4_4_1=g_navNode_4_4.addNode('114307','Tools',ssUrlPrefix + 'research/services/tools/home.html','ShowWhatsInside==true');
g_navNode_4_4_1_1=g_navNode_4_4_1.addNode('123481','Intent to Submit a Grant',ssUrlPrefix + 'research/services/tools/intent/home.html');
g_navNode_5=g_navNode_Root.addNode('7823','Sports Medicine',ssUrlPrefix + 'sportsmed/home.html','ShowWhatsInside==true');
if (SSContributor)
{
g_navNode_9=g_navNode_Root.addNode('5915','SSManager',ssUrlPrefix + 'ssmanager/index.htm','ShowDownloads==true','ShowRelatedLinks==true','ShowRightNavImage==false','ShowWhatsInside==false','contributorOnly==true');
}
