/////////////////////////////////////////////////////////////////////////////
// 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('4557','Home',ssUrlPrefix + 'home.html',null,'AudienceNavigationContent==AHC_CONTENT_106226','FacilityAddress==420 Delaware Street \x3cacronym title\x3d\"South East\"\x3eSE\x3c/acronym\x3e Mayo Memorial Building 735, A295 Minneapolis, \x3cacronym title\x3d\"Minnesota\"\x3eMN\x3c/acronym\x3e 55455','ShowAudienceNavigation==true','ShowBreadCrumbs==true','UniversityDepartmentName==Academic Health Center','contributorOnly==false','meta_description==The Academic Health Center of the University of Minnesota is a leader in health care, including medical school, medical center for research, and quality primary care for people and animals.','meta_keywords==medical school, medical center, primary care','title==Academic Health Center - University of Minnesota ');
g_navNode_1=g_navNode_Root.addNode('14770','Research',ssUrlPrefix + 'research/index.htm');
g_navNode_1_0=g_navNode_1.addNode('14805','Corridors of Discovery',ssUrlPrefix + 'research/corridors/index.htm','meta_description==Medical research at the University of Minnesota travels a Corridor of Discovery. Learn more about diabetes research, infectious disease research, cardiovascular disease research, cancer research, and brain sciences research.','meta_keywords==medical research, infectious disease research, diabetes research, brain sciences research, cardiovascular disease research, cancer research','title==Medical Research Corridors of Discovery - Academic Health Center - University of Minnesota');
g_navNode_1_1=g_navNode_1.addNode('14813','U-Mayo Partnership',ssUrlPrefix + 'research/umayo/index.htm','meta_description==The Minnesota Partnership for Biotechnology and Medical Genomics is a collaboration of the University of Minnesota, the Mayo Clinic, and the state to position Minnesota as a world leader in biotechnology.','meta_keywords==biotechnology, Mayo Clinic, Minnesota Partnership','title==Minnesota Partnership - Academic Health Center - University of Minnesota');
g_navNode_1_2=g_navNode_1.addNode('14815','Clinical Trials and CTSI',ssUrlPrefix + 'research/clinicaltrials/index.htm','meta_description==The medical research at the Academic Health Center of University of Minnesota performs clinical trials to move from experimental treatment to standard of care.','meta_keywords==clinical trials, experimental treatment, medical research','title==Clinical Trials - Medical Research - Academic Health Center - University of Minnesota');
g_navNode_1_6=g_navNode_1.addNode('26904','Biomedical Discovery District',ssUrlPrefix + 'research/bdd.umn.edu/index.htm');
g_navNode_2=g_navNode_Root.addNode('14771','Education',ssUrlPrefix + 'education/index.htm','meta_description==The medical schools and health programs from the Academic Health Center of the University of Minnesota prepare the next generation of health professionals.','meta_keywords==medical schools, health programs, health professionals','title== Education - Academic Health Center - University of Minnesota');
g_navNode_2_0=g_navNode_2.addNode('15809','School of Dentistry',ssUrlPrefix + 'education/dentistry/index.htm','meta_description==The University of Minnesota School of Dentistry is the state\\x27s only dental school, dedicated to quality dental care through outreach programs and educating the best and brightest students.','meta_keywords==school of dentistry, dental school, dental care','title== School of Dentistry - Academic Health Center - University of Minnesota');
g_navNode_2_1=g_navNode_2.addNode('15808','Medical School',ssUrlPrefix + 'education/med/index.htm','meta_description==The University of Minnesota Medical School is a model of medical education, graduating well-trained medical professionals who train as residents and practice in their communities.','meta_keywords==medical school, medical professionals, medical education','title==Medical School - Academic Health Center - University of Minnesota');
g_navNode_2_2=g_navNode_2.addNode('15810','School of Nursing',ssUrlPrefix + 'education/nursing/index.htm','meta_description==The University of Minnesota School of Nursing produces the next generation of nurse leaders, including roles like nurse clinician, midwife, wellness consultant, and more.','meta_keywords==school of nursing, nurse clinician, nurse','title==School of Nursing - Academic Health Center - University of Minnesota');
g_navNode_2_3=g_navNode_2.addNode('15814','College of Pharmacy',ssUrlPrefix + 'education/pharmacy/index.htm','meta_description==The University of Minnesota College of Pharmacy is recognized as an outstanding pharmacy education and research institutions, producing highly qualified pharmacists.','meta_keywords==college of pharmacy, pharmacy education, pharmacists','title==College of Pharmacy - Academic Health Center - University of Minnesota');
g_navNode_2_4=g_navNode_2.addNode('15820','School of Public Health',ssUrlPrefix + 'education/sph/index.htm','meta_description==The University of Minnesota School of Public Health focuses on improving the health of populations through education, research, and community outreach with disease prevention as the goal.','meta_keywords==school of public health, disease prevention, ','title==School of Public Health - Academic Health Center - University of Minnesota');
g_navNode_2_5=g_navNode_2.addNode('15823','College of Veterinary Medicine',ssUrlPrefix + 'education/vetmed/index.htm','meta_description==The University of Minnesota College of Veterinary Medicine is home to the Veterinary Medical Center, the most advanced veterinary care facility in the state.','meta_keywords==veterinary medicine, veterinary medical center, veterinary care facility','title==College of Veterinary Medicine - Academic Health Center - University of Minnesota');
g_navNode_3=g_navNode_Root.addNode('14772','Outreach',ssUrlPrefix + 'outreach/index.htm','meta_description==The Academic Health Center of the University of Minnesota Outreach public service programs link the University of Minnesota with citizens in direct and vital ways, including community health care.','meta_keywords==public service programs, community health care','title==Outreach - Academic Health Center - University of Minnesota');
g_navNode_3_0=g_navNode_3.addNode('15824','Mini Medical School',ssUrlPrefix + 'outreach/minimed/index.htm','meta_description==Each semester the University of Minnesota holds Mini Medical Schools, where potential medical students can experience the life of a medical student.','meta_keywords==mini medical schools, medical student','title==Mini Medical School - Academic Health Center - University of Minnesota');
g_navNode_3_1=g_navNode_3.addNode('15825','Minnesota State Fair',ssUrlPrefix + 'outreach/statefair/index.htm','meta_description==The University of Minnesota\\x27s State Fair exhibit showcases the Academic Health Center\\x27s contributions to medical research with presentations from a range of health topics.','meta_keywords==health topics, state fair exhibit, medical research','title==Minnesota State Fair - Academic Health Center - University of Minnesota');
g_navNode_3_2=g_navNode_3.addNode('15826','Underserved Populations',ssUrlPrefix + 'outreach/underserved/index.htm','meta_description==The Academic Health Center of the University of Minnesota provides health care services in the form of community clinics that provide care for the uninsured, underinsured, or homeless.','meta_keywords==health care services, community clinics, health care','title==Community Health Care - Academic Health Center- University of Minnesota');
g_navNode_3_3=g_navNode_3.addNode('15829','Medical Reserve Corps',ssUrlPrefix + 'outreach/mrc/index.htm','meta_description==The Academic Health Center of the University of Minnesota\\x27s volunteer run Medical Reserve Corps provides a ready source of health-related services in times of special need.','meta_keywords==medical reserve corps, health-related services','title==Medical Reserve Corps - Academic Health Center - University of Minnesota');
g_navNode_4=g_navNode_Root.addNode('14773','Meet the AHC',ssUrlPrefix + 'meet/index.htm','meta_description==The University of Minnesota\\x27s Academic Health Center comprises 6 schools and colleges that train health professionals and is also home to health centers and research institutes.','meta_keywords==health centers, research institutes, health professionals','title==Meet the AHC - Academic Health Center - University of Minnesota');
g_navNode_4_0=g_navNode_4.addNode('14774','Our Mission',ssUrlPrefix + 'meet/mission/index.htm','meta_description==The Academic Health Center of the University of Minnesota\\x27s mission is to educate the next generation of health professionals, discover new preventions, treatments, and cures, and to enhance Minnesota\\x27s bioscience industries.','meta_keywords==health professionals, bioscience industries, health center','title==Mission - Academic Health Center - University of Minnesota');
g_navNode_4_1=g_navNode_4.addNode('14776','Facts and Figures',ssUrlPrefix + 'meet/facts/index.htm','contributorOnly==false','meta_description==Facts and figures about the University of Minnesota\\x27s Academic Health Center, including founding date, locations, leaders, and schools and colleges.','meta_keywords==academic health center, location','title==Facts and Figures - Academic Health Center - University of Minnesota');
g_navNode_4_2=g_navNode_4.addNode('14777','Leadership',ssUrlPrefix + 'meet/leadership/index.htm','meta_description==Meet Aaron Friedman, M.D. and leader of the University of Minnesota\\x27s Academic Health Center.','meta_keywords==Aaron Friedman, academic health center, health center leaders','title==Leadership - Academic Health Center - University of Minnesota');
g_navNode_4_3=g_navNode_4.addNode('14779','Expert Guide',ssUrlPrefix + 'meet/experts/index.htm','meta_description==Find an expert on any health topic from the University of Minnesota\\x27s Academic Health Center, from heart disease to health policy.','meta_keywords==health expert, health center','title==Experts - Academic Health Center - University of Minnesota');
g_navNode_4_4=g_navNode_4.addNode('14803','Partners',ssUrlPrefix + 'meet/partners/index.htm','meta_description==The University of Minnesota\\x27s Academic Health Center relies on it\\x27s research partners, education partners, clinical care partners, and foundation partners to achieve our mission.','meta_keywords==research partners, education partners, clinical care partners, foundation partners','title==Partnerships - Academic Health Center - University of Minnesota');
g_navNode_4_6=g_navNode_4.addNode('34550','Academies for Excellence',ssUrlPrefix + 'meet/academies-for-excellence2/index.htm','meta_description==The University of Minnesota\\x27s Academic Health Center recognizes outstanding faculty in scientific research and educational scholarship through the Academies for Excellence.','meta_keywords==scientific research, educational scholarship, academies for excellence','title==Academies for Excellence - Academic Health Center - University of Minnesota');
g_navNode_4_7=g_navNode_4.addNode('14804','History',ssUrlPrefix + 'meet/firsts/index.htm');
g_navNode_4_8=g_navNode_4.addNode('17931','Online Community',ssUrlPrefix + 'meet/online/index.htm','contributorOnly==false','meta_description==Join the University of Minnesota\\x27s Academic Health Center\\x27s online community to get the latest health science updates. ','meta_keywords==health science, health science updates','title==Online Community - Academic Health Center - University of Minnesota');
g_navNode_4_9=g_navNode_4.addNode('34978','Centers and Institutes',ssUrlPrefix + 'meet/centers-institutes/index.htm','meta_description==The University of Minnesota\\x27s Academic Health Center has 90 centers and institutes with experts across the health science disciplines.','meta_keywords==health center, health sciences','title==Centers and Institutes - Academic Health Center - University of Minnesota');
g_navNode_5=g_navNode_Root.addNode('14817','Policy Leaders',ssUrlPrefix + 'policyleader/index.htm','meta_description==The University of Minnesota\\x27s Academic Health Center is offering the 2010 Legislature primary care solution to the shortage of primary care providers.','meta_keywords==primary care providers, primary care solution, academic health center','title==Policy Leaders - Academic Health Center - University of Minnesota');
g_navNode_5_0=g_navNode_5.addNode('15972','Stimulus Grants',ssUrlPrefix + 'policyleader/stimulus/index.htm');
g_navNode_5_0_0=g_navNode_5_0.addNode('15973','Diabetes',ssUrlPrefix + 'policyleader/stimulus/diabetes/index.htm');
g_navNode_5_0_1=g_navNode_5_0.addNode('15974','Infectious Disease and Immunology',ssUrlPrefix + 'policyleader/stimulus/infectiousdisease/index.htm');
g_navNode_5_0_2=g_navNode_5_0.addNode('15975','Brain Science',ssUrlPrefix + 'policyleader/stimulus/brainscience/index.htm');
g_navNode_5_0_3=g_navNode_5_0.addNode('15976','Cancer',ssUrlPrefix + 'policyleader/stimulus/cancer/index.htm');
g_navNode_5_0_4=g_navNode_5_0.addNode('15977','Cardiovascular',ssUrlPrefix + 'policyleader/stimulus/cardiovascular/index.htm');
g_navNode_5_0_5=g_navNode_5_0.addNode('15978','Other Research',ssUrlPrefix + 'policyleader/stimulus/otherresearch/index.htm');
g_navNode_5_0_6=g_navNode_5_0.addNode('15979','Infrastructure and Equipment',ssUrlPrefix + 'policyleader/stimulus/infrastructure/index.htm');
if (SSContributor)
{
g_navNode_5_3=g_navNode_5.addNode('17360','Primary Care',ssUrlPrefix + 'policyleader/primarycare/index.htm','contributorOnly==true');
}
g_navNode_6=g_navNode_Root.addNode('14818','Supporters',ssUrlPrefix + 'supporter/index.htm','meta_description==The University of Minnesota\\x27s Academic Health Center relies on support in the form of donations and advocacy to continue searching for cures and treatments.','meta_keywords==donations, advocacy, academic health center','title==Supporters - Academic Health Center - University of Minnesota');
g_navNode_7=g_navNode_Root.addNode('14819','Business Leaders',ssUrlPrefix + 'businessleader/index.htm','meta_description==The University of Minnesota\\x27s Academic Health Center needs business partners in health industry to move discoveries from the lab to the marketplace.','meta_keywords==business partners, health industry, academic health center','title==Business Leaders - Academic Health Center - University of Minnesota');
g_navNode_8=g_navNode_Root.addNode('14820','Media',ssUrlPrefix + 'media/index.htm','contributorOnly==false','meta_description==Find the University of Minnesota\\x27s Academic Health Center in the media, including events, breakthroughs, and changes within the Health Center.','meta_keywords==academic health center, media, events','title==Media - Academic Health Center - University of Minnesota');
g_navNode_8_0=g_navNode_8.addNode('14834','Releases',ssUrlPrefix + 'media/releases/index.php');
g_navNode_9=g_navNode_Root.addNode('14821','Faculty and Staff',ssUrlPrefix + 'facultystaff/index.htm','meta_description==Meet the faculty and staff at The University of Minnesota\\x27s Academic Health Center.','meta_keywords==faculty, staff, academic health center','title==Faculty and Staff - Academic Health Center - University of Minnesota');
g_navNode_9_0=g_navNode_9.addNode('16285','Communications',ssUrlPrefix + 'facultystaff/communications/index.htm');
g_navNode_9_1=g_navNode_9.addNode('16288','Finance',ssUrlPrefix + 'facultystaff/finance/index.htm');
g_navNode_9_2=g_navNode_9.addNode('16329','Frequently Used Web sites',ssUrlPrefix + 'facultystaff/frequentsites/index.htm');
g_navNode_9_3=g_navNode_9.addNode('16330','Fall Faculty Forum',ssUrlPrefix + 'facultystaff/facultyforum/index.htm');
g_navNode_9_4=g_navNode_9.addNode('16337','Events',ssUrlPrefix + 'facultystaff/events/index.htm');
g_navNode_9_5=g_navNode_9.addNode('16338','News Capsules',ssUrlPrefix + 'facultystaff/newscaps/index.htm');
g_navNode_9_6=g_navNode_9.addNode('16391','Information Systems',ssUrlPrefix + 'facultystaff/ahcis/index.htm');
g_navNode_9_7=g_navNode_9.addNode('16432','Human Resources',ssUrlPrefix + 'facultystaff/hr/index.htm');
g_navNode_9_8=g_navNode_9.addNode('16515','Emergency Response',ssUrlPrefix + 'facultystaff/oer/index.htm');
g_navNode_9_8_2=g_navNode_9_8.addNode('16562','Medical Reserve Corps',ssUrlPrefix + 'facultystaff/oer/mrc/index.htm');
g_navNode_9_9=g_navNode_9.addNode('16489','Senior Vice President\'s File Cabinet',ssUrlPrefix + 'facultystaff/srvpfiles/index.htm');
g_navNode_10=g_navNode_Root.addNode('14822','Patients',ssUrlPrefix + 'patients/index.htm','meta_description==The University of Minnesota\\x27s Academic Health Center provides quality health care for people and animals in hospitals, clinics, and long-term care facilities.','meta_keywords==health care, long-term care facilities, hospitals, clinics','title==Patients - Academic Health Center - University of Minnesota');
g_navNode_11=g_navNode_Root.addNode('14824','Students',ssUrlPrefix + 'students/index.htm');

