/////////////////////////////////////////////////////////////////////////////
// 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('8014','Home',ssUrlPrefix + 'home.html',null);
g_navNode_0=g_navNode_Root.addNode('102561','News of the Department',ssUrlPrefix + 'News/home.html');
g_navNode_0_1=g_navNode_0.addNode('103029','Archives',ssUrlPrefix + 'News/Archives/home.html','ShowWhatsInside==true');
g_navNode_0_1_0=g_navNode_0_1.addNode('103031','2006',ssUrlPrefix + 'News/Archives/Y2006/home.html','ShowWhatsInside==true');
g_navNode_0_1_0_0=g_navNode_0_1_0.addNode('103033','07/05/2006',ssUrlPrefix + 'News/Archives/Y2006/July5/home.html');
g_navNode_0_1_0_1=g_navNode_0_1_0.addNode('106803','08/16/2006',ssUrlPrefix + 'News/Archives/Y2006/August16/home.html');
g_navNode_0_1_0_2=g_navNode_0_1_0.addNode('110413','09/06/2006',ssUrlPrefix + 'News/Archives/Y2006/September6/home.html');
g_navNode_0_1_0_3=g_navNode_0_1_0.addNode('111141','09/20/2006',ssUrlPrefix + 'News/Archives/Y2006/September20/home.html');
g_navNode_0_1_0_4=g_navNode_0_1_0.addNode('112980','09/27/2006',ssUrlPrefix + 'News/Archives/Y2006/October406/home.html');
g_navNode_0_1_0_5=g_navNode_0_1_0.addNode('116462','10/04/2006',ssUrlPrefix + 'News/Archives/Y2006/october4/home.html');
g_navNode_0_1_0_6=g_navNode_0_1_0.addNode('118473','10/25/2006',ssUrlPrefix + 'News/Archives/Y2006/October25/home.html');
g_navNode_0_1_0_7=g_navNode_0_1_0.addNode('123112','11/15/2006',ssUrlPrefix + 'News/Archives/Y2006/November15/home.html');
g_navNode_0_1_1=g_navNode_0_1.addNode('123105','2007',ssUrlPrefix + 'News/Archives/Y2007/home.html','ShowWhatsInside==true');
g_navNode_0_1_1_0=g_navNode_0_1_1.addNode('123117','01/03/2007',ssUrlPrefix + 'News/Archives/Y2007/January3/home.html');
g_navNode_0_1_1_1=g_navNode_0_1_1.addNode('125928','01/24/2007',ssUrlPrefix + 'News/Archives/Y2007/January24/home.html');
g_navNode_0_1_1_2=g_navNode_0_1_1.addNode('125947','01/31/2007',ssUrlPrefix + 'News/Archives/Y2007/January31/home.html');
g_navNode_0_1_1_3=g_navNode_0_1_1.addNode('131626','03/21/2007',ssUrlPrefix + 'News/Archives/Y2007/March21/home.html');
g_navNode_0_1_1_4=g_navNode_0_1_1.addNode('137487','04/18/2007',ssUrlPrefix + 'News/Archives/Y2007/April18/home.html');
g_navNode_0_1_1_5=g_navNode_0_1_1.addNode('141265','05/30/2007',ssUrlPrefix + 'News/Archives/Y2007/May30/home.html');
g_navNode_0_1_1_6=g_navNode_0_1_1.addNode('142590','06/20/2007',ssUrlPrefix + 'News/Archives/Y2007/June202007/home.html');
g_navNode_0_1_1_7=g_navNode_0_1_1.addNode('155058','10/03/2007',ssUrlPrefix + 'News/Archives/Y2007/October32007/home.html');
g_navNode_0_1_1_8=g_navNode_0_1_1.addNode('158342','10/24/2007',ssUrlPrefix + 'News/Archives/Y2007/October242007/home.html');
g_navNode_0_1_2=g_navNode_0_1.addNode('170634','2008',ssUrlPrefix + 'News/Archives/Y2008/home.html','ShowWhatsInside==true');
g_navNode_0_1_2_0=g_navNode_0_1_2.addNode('170641','01/02/2008',ssUrlPrefix + 'News/Archives/Y2008/January2/home.html');
g_navNode_0_1_2_1=g_navNode_0_1_2.addNode('176367','01/30/08',ssUrlPrefix + 'News/Archives/Y2008/January30/home.html');
g_navNode_1=g_navNode_Root.addNode('134822','Positions',ssUrlPrefix + 'Positions/home.html');
g_navNode_2=g_navNode_Root.addNode('17674','About the Department',ssUrlPrefix + 'about/home.html');
g_navNode_3=g_navNode_Root.addNode('18002','Clinical Services',ssUrlPrefix + 'clinics/home.html','ShowRelatedLinks==true','ShowWhatsInside==true');
g_navNode_3_0=g_navNode_3.addNode('18004','Anxiety and Mood Disorder, Clinic and Adolescent',ssUrlPrefix + 'clinics/anxiety/home.html','ShowWhatsInside==false');
g_navNode_3_1=g_navNode_3.addNode('40949','Attention and Behavior Problems Clinic',ssUrlPrefix + 'clinics/abpclinic/home.html','ShowWhatsInside==false');
g_navNode_3_2=g_navNode_3.addNode('18010','Mental Illness Chemical Dependency',ssUrlPrefix + 'clinics/mental-chemdep/home.html','ShowWhatsInside==false');
g_navNode_3_3=g_navNode_3.addNode('18011','Neuropsychological Evaluations',ssUrlPrefix + 'clinics/neuropsycheval/home.html');
g_navNode_3_4=g_navNode_3.addNode('18012','Outpatient Psychiatry Clinic',ssUrlPrefix + 'clinics/outpatient/home.html');
g_navNode_3_5=g_navNode_3.addNode('18005','Youth Psychosis Clinic',ssUrlPrefix + 'clinics/dctsfclinic/home.html');
g_navNode_4=g_navNode_Root.addNode('17805','Educational Programs',ssUrlPrefix + 'education/home.html','ShowWhatsInside==true');
g_navNode_4_0=g_navNode_4.addNode('17806','Residency and Fellowships',ssUrlPrefix + 'education/residency/home.html','ShowWhatsInside==true');
g_navNode_4_0_0=g_navNode_4_0.addNode('17950','Addiction Fellowships',ssUrlPrefix + 'education/residency/addictions/home.html','ShowWhatsInside==true');
g_navNode_4_0_0_0=g_navNode_4_0_0.addNode('17951','Addiction Medicine',ssUrlPrefix + 'education/residency/addictions/addictionmedicine/home.html','ShowWhatsInside==true');
g_navNode_4_0_0_0_0=g_navNode_4_0_0_0.addNode('17952','About the Director',ssUrlPrefix + 'education/residency/addictions/addictionmedicine/directors1/home.html');
g_navNode_4_0_0_0_1=g_navNode_4_0_0_0.addNode('17953','Contact Us',ssUrlPrefix + 'education/residency/addictions/addictionmedicine/contacts/home.html');
g_navNode_4_0_0_0_2=g_navNode_4_0_0_0.addNode('17954','How to Apply',ssUrlPrefix + 'education/residency/addictions/addictionmedicine/applications/home.html');
g_navNode_4_0_0_0_3=g_navNode_4_0_0_0.addNode('17955','Training Sites',ssUrlPrefix + 'education/residency/addictions/addictionmedicine/trainingsites/home.html','ShowWhatsInside==true');
g_navNode_4_0_0_0_3_0=g_navNode_4_0_0_0_3.addNode('17956','Fairview University Medical Center',ssUrlPrefix + 'education/residency/addictions/addictionmedicine/trainingsites/fumc/home.html');
g_navNode_4_0_0_0_3_1=g_navNode_4_0_0_0_3.addNode('17957','Veterans Affairs Medical Center',ssUrlPrefix + 'education/residency/addictions/addictionmedicine/trainingsites/vamc/home.html');
g_navNode_4_0_0_1=g_navNode_4_0_0.addNode('17959','Addiction Psychiatry',ssUrlPrefix + 'education/residency/addictions/addictionpsychiatry/home.html','ShowWhatsInside==true');
g_navNode_4_0_0_1_0=g_navNode_4_0_0_1.addNode('17961','About the Director',ssUrlPrefix + 'education/residency/addictions/addictionpsychiatry/directors1/home.html');
g_navNode_4_0_0_1_1=g_navNode_4_0_0_1.addNode('17960','Contact Us',ssUrlPrefix + 'education/residency/addictions/addictionpsychiatry/contacts/home.html');
g_navNode_4_0_0_1_2=g_navNode_4_0_0_1.addNode('17962','How to Apply',ssUrlPrefix + 'education/residency/addictions/addictionpsychiatry/applications/home.html');
g_navNode_4_0_0_1_3=g_navNode_4_0_0_1.addNode('17963','Training Sites',ssUrlPrefix + 'education/residency/addictions/addictionpsychiatry/trainingsites/home.html','ShowWhatsInside==true');
g_navNode_4_0_0_1_3_0=g_navNode_4_0_0_1_3.addNode('17964','Fairview University Medical Center',ssUrlPrefix + 'education/residency/addictions/addictionpsychiatry/trainingsites/fumc/home.html');
g_navNode_4_0_0_1_3_1=g_navNode_4_0_0_1_3.addNode('17965','Veterans Affairs Medical Center',ssUrlPrefix + 'education/residency/addictions/addictionpsychiatry/trainingsites/vamc/home.html');
g_navNode_4_0_1=g_navNode_4_0.addNode('17807','Adult Program',ssUrlPrefix + 'education/residency/adult/home.html','ShowRelatedLinks==true','ShowWhatsInside==true');
g_navNode_4_0_1_0=g_navNode_4_0_1.addNode('17874','How to Apply',ssUrlPrefix + 'education/residency/adult/apply/home.html');
g_navNode_4_0_1_1=g_navNode_4_0_1.addNode('17808','Our Program',ssUrlPrefix + 'education/residency/adult/program/home.html','ShowWhatsInside==true');
g_navNode_4_0_1_1_0=g_navNode_4_0_1_1.addNode('17821','Year Four',ssUrlPrefix + 'education/residency/adult/program/year4/home.html','ShowWhatsInside==true');
g_navNode_4_0_1_1_0_0=g_navNode_4_0_1_1_0.addNode('17822','Clinical Rotations',ssUrlPrefix + 'education/residency/adult/program/year4/clinicalrotations/home.html');
g_navNode_4_0_1_1_0_1=g_navNode_4_0_1_1_0.addNode('17823','Didactics',ssUrlPrefix + 'education/residency/adult/program/year4/didactics/home.html');
g_navNode_4_0_1_1_0_2=g_navNode_4_0_1_1_0.addNode('17824','Goals and Objectives',ssUrlPrefix + 'education/residency/adult/program/year4/goals/home.html');
g_navNode_4_0_1_1_1=g_navNode_4_0_1_1.addNode('17818','Year Three',ssUrlPrefix + 'education/residency/adult/program/year3/home.html','ShowWhatsInside==true');
g_navNode_4_0_1_1_1_0=g_navNode_4_0_1_1_1.addNode('17819','Clinical Rotations',ssUrlPrefix + 'education/residency/adult/program/year3/clinicalrotations/home.html');
g_navNode_4_0_1_1_1_1=g_navNode_4_0_1_1_1.addNode('146204','Didactics',ssUrlPrefix + 'education/residency/adult/program/year3/didactics/home.html');
g_navNode_4_0_1_1_1_2=g_navNode_4_0_1_1_1.addNode('17820','Goals and Objectives',ssUrlPrefix + 'education/residency/adult/program/year3/goals/home.html');
g_navNode_4_0_1_1_2=g_navNode_4_0_1_1.addNode('17813','Year Two',ssUrlPrefix + 'education/residency/adult/program/year2/home.html','ShowWhatsInside==true');
g_navNode_4_0_1_1_2_0=g_navNode_4_0_1_1_2.addNode('17814','Clinical Rotations',ssUrlPrefix + 'education/residency/adult/program/year2/clinicalrotations/home.html');
g_navNode_4_0_1_1_2_1=g_navNode_4_0_1_1_2.addNode('17815','Didactics',ssUrlPrefix + 'education/residency/adult/program/year2/didactics/home.html');
g_navNode_4_0_1_1_2_2=g_navNode_4_0_1_1_2.addNode('17816','Goals and Objectives',ssUrlPrefix + 'education/residency/adult/program/year2/goals/home.html');
g_navNode_4_0_1_1_3=g_navNode_4_0_1_1.addNode('17809','Year One',ssUrlPrefix + 'education/residency/adult/program/year1/home.html','ShowWhatsInside==true');
g_navNode_4_0_1_1_3_0=g_navNode_4_0_1_1_3.addNode('17810','Clinical Rotations',ssUrlPrefix + 'education/residency/adult/program/year1/clinicalrotations/home.html');
g_navNode_4_0_1_1_3_1=g_navNode_4_0_1_1_3.addNode('17811','Didactics',ssUrlPrefix + 'education/residency/adult/program/year1/didactics/home.html');
g_navNode_4_0_1_1_3_2=g_navNode_4_0_1_1_3.addNode('17812','Goals and Objectives',ssUrlPrefix + 'education/residency/adult/program/year1/goals/home.html');
g_navNode_4_0_1_2=g_navNode_4_0_1.addNode('17827','Frequently Asked Questions',ssUrlPrefix + 'education/residency/adult/faqs/home.html','ShowWhatsInside==true');
g_navNode_4_0_1_2_0=g_navNode_4_0_1_2.addNode('17828','Book and Travel Funds',ssUrlPrefix + 'education/residency/adult/faqs/benefits/home.html');
g_navNode_4_0_1_2_1=g_navNode_4_0_1_2.addNode('17830','Call',ssUrlPrefix + 'education/residency/adult/faqs/call/home.html');
g_navNode_4_0_1_2_2=g_navNode_4_0_1_2.addNode('17833','Conference Leave',ssUrlPrefix + 'education/residency/adult/faqs/conferenceleave/home.html');
g_navNode_4_0_1_2_3=g_navNode_4_0_1_2.addNode('17836','Duty Hours',ssUrlPrefix + 'education/residency/adult/faqs/dutyhours/home.html');
g_navNode_4_0_1_2_4=g_navNode_4_0_1_2.addNode('17840','Insurance',ssUrlPrefix + 'education/residency/adult/faqs/insurance/home.html');
g_navNode_4_0_1_2_5=g_navNode_4_0_1_2.addNode('17844','Leave Policy',ssUrlPrefix + 'education/residency/adult/faqs/leavepolicy/home.html');
g_navNode_4_0_1_2_6=g_navNode_4_0_1_2.addNode('17846','Libraries',ssUrlPrefix + 'education/residency/adult/faqs/libraries/home.html');
g_navNode_4_0_1_2_7=g_navNode_4_0_1_2.addNode('17851','Meal Tickets',ssUrlPrefix + 'education/residency/adult/faqs/meals/home.html');
g_navNode_4_0_1_2_8=g_navNode_4_0_1_2.addNode('17853','Parking',ssUrlPrefix + 'education/residency/adult/faqs/parking/home.html');
g_navNode_4_0_1_2_9=g_navNode_4_0_1_2.addNode('17856','Residency Assistance Programs',ssUrlPrefix + 'education/residency/adult/faqs/residencyassistance/home.html');
g_navNode_4_0_1_2_10=g_navNode_4_0_1_2.addNode('17862','Stipends',ssUrlPrefix + 'education/residency/adult/faqs/stipends/home.html');
g_navNode_4_0_1_3=g_navNode_4_0_1.addNode('17876','Living in Minnesota',ssUrlPrefix + 'education/residency/adult/minnesota/home.html');
g_navNode_4_0_1_4=g_navNode_4_0_1.addNode('17877','Reaching Us',ssUrlPrefix + 'education/residency/adult/contacts/home.html');
g_navNode_4_0_1_5=g_navNode_4_0_1.addNode('17878','Training Facilities',ssUrlPrefix + 'education/residency/adult/facilities/home.html');
g_navNode_4_0_1_5_0=g_navNode_4_0_1_5.addNode('17881','Farview University Medical Center',ssUrlPrefix + 'education/residency/adult/facilities/fumc/home.html');
g_navNode_4_0_1_5_1=g_navNode_4_0_1_5.addNode('17884','Veterans Affairs Medical Center',ssUrlPrefix + 'education/residency/adult/facilities/vamc/home.html');
g_navNode_4_0_2=g_navNode_4_0.addNode('17886','Child and Adolescent Fellowship',ssUrlPrefix + 'education/residency/childadoles/home.html','ShowDownloads==true','ShowWhatsInside==true');
g_navNode_4_0_2_0=g_navNode_4_0_2.addNode('17890','How to Apply',ssUrlPrefix + 'education/residency/childadoles/application/home.html');
g_navNode_4_0_2_1=g_navNode_4_0_2.addNode('17928','Child and Adolescent Outpatient Clinic',ssUrlPrefix + 'education/residency/childadoles/clinic/home.html');
g_navNode_4_0_2_2=g_navNode_4_0_2.addNode('17894','Child and Adolescent Psychiatry Faculty',ssUrlPrefix + 'education/residency/childadoles/faculty/home.html');
g_navNode_4_0_2_3=g_navNode_4_0_2.addNode('17903','Day Hospital Rotation',ssUrlPrefix + 'education/residency/childadoles/dayrotation/home.html');
g_navNode_4_0_2_4=g_navNode_4_0_2.addNode('17905','Didactic Course Work and Conferences',ssUrlPrefix + 'education/residency/childadoles/didactic/home.html');
g_navNode_4_0_2_5=g_navNode_4_0_2.addNode('17912','Elective',ssUrlPrefix + 'education/residency/childadoles/elective/home.html');
g_navNode_4_0_2_6=g_navNode_4_0_2.addNode('17914','Evaluations',ssUrlPrefix + 'education/residency/childadoles/evaluations/home.html');
g_navNode_4_0_2_7=g_navNode_4_0_2.addNode('17916','Forensic Consultation',ssUrlPrefix + 'education/residency/childadoles/forensic/home.html');
g_navNode_4_0_2_8=g_navNode_4_0_2.addNode('17918','Pediatric Consultation Liaison',ssUrlPrefix + 'education/residency/childadoles/liaison/home.html');
g_navNode_4_0_2_9=g_navNode_4_0_2.addNode('17919','Pediatric Neurology',ssUrlPrefix + 'education/residency/childadoles/pedneurology/home.html');
g_navNode_4_0_2_10=g_navNode_4_0_2.addNode('17920','Psychopharmacology',ssUrlPrefix + 'education/residency/childadoles/psychopharmacology/home.html');
g_navNode_4_0_2_11=g_navNode_4_0_2.addNode('17924','Psychotherapy Program',ssUrlPrefix + 'education/residency/childadoles/psychotherapy/home.html');
g_navNode_4_0_2_12=g_navNode_4_0_2.addNode('17927','School Consultation',ssUrlPrefix + 'education/residency/childadoles/schoolconsult/home.html');
g_navNode_4_0_2_13=g_navNode_4_0_2.addNode('17925','Research',ssUrlPrefix + 'education/residency/childadoles/research/home.html');
g_navNode_4_0_2_14=g_navNode_4_0_2.addNode('17936','PGY-4th Year Block Graph',ssUrlPrefix + 'education/residency/childadoles/PGY-4th/home.html');
g_navNode_4_0_2_15=g_navNode_4_0_2.addNode('17929','PGY Fifth Year Block Graph',ssUrlPrefix + 'education/residency/childadoles/PGY-5th/home.html');
g_navNode_4_0_3=g_navNode_4_0.addNode('17938','Geriatric Fellowship',ssUrlPrefix + 'education/residency/geriatric/home.html','ShowWhatsInside==true');
g_navNode_4_0_3_0=g_navNode_4_0_3.addNode('17939','About the Director',ssUrlPrefix + 'education/residency/geriatric/director/home.html');
g_navNode_4_0_3_1=g_navNode_4_0_3.addNode('17940','Contact Us',ssUrlPrefix + 'education/residency/geriatric/contacts/home.html');
g_navNode_4_0_3_2=g_navNode_4_0_3.addNode('17941','How to Apply',ssUrlPrefix + 'education/residency/geriatric/apply/home.html');
g_navNode_4_0_3_3=g_navNode_4_0_3.addNode('17942','Veterans Affairs Medical Center',ssUrlPrefix + 'education/residency/geriatric/vamc/home.html');
g_navNode_4_0_4=g_navNode_4_0.addNode('149955','Psychosomatic Medicine Fellowship',ssUrlPrefix + 'education/residency/psychosomatic/home.html','ShowWhatsInside==true');
g_navNode_4_0_4_0=g_navNode_4_0_4.addNode('149957','How to Apply',ssUrlPrefix + 'education/residency/psychosomatic/apply/home.html');
g_navNode_4_0_4_1=g_navNode_4_0_4.addNode('149961','About the Director',ssUrlPrefix + 'education/residency/psychosomatic/director/home.html');
g_navNode_4_0_4_2=g_navNode_4_0_4.addNode('149978','Clinical Rotations',ssUrlPrefix + 'education/residency/psychosomatic/rotations/home.html');
g_navNode_4_0_4_3=g_navNode_4_0_4.addNode('149985','Seminars in Psychosomatic Medicine',ssUrlPrefix + 'education/residency/psychosomatic/seminars/home.html','ShowWhatsInside==true');
g_navNode_4_0_4_3_0=g_navNode_4_0_4_3.addNode('150009','Psychiatric Morbidity in Mental Illness',ssUrlPrefix + 'education/residency/psychosomatic/seminars/psychmorbidity/home.html');
g_navNode_4_0_4_3_1=g_navNode_4_0_4_3.addNode('150025','Psychotherapy in Psychosomatic Medicine',ssUrlPrefix + 'education/residency/psychosomatic/seminars/psychotherapy/home.html');
g_navNode_4_0_4_3_2=g_navNode_4_0_4_3.addNode('150038','Special Topics for Psychosomatic Medicine',ssUrlPrefix + 'education/residency/psychosomatic/seminars/specialtopics/home.html');
g_navNode_4_0_5=g_navNode_4_0.addNode('17943','Schizophrenia',ssUrlPrefix + 'education/residency/schizophrenia/home.html','ShowWhatsInside==true');
g_navNode_4_0_5_0=g_navNode_4_0_5.addNode('17944','About the Director',ssUrlPrefix + 'education/residency/schizophrenia/director/home.html');
g_navNode_4_0_5_1=g_navNode_4_0_5.addNode('17945','Clinical Training',ssUrlPrefix + 'education/residency/schizophrenia/clinical/home.html');
g_navNode_4_0_5_2=g_navNode_4_0_5.addNode('17946','Contact Us',ssUrlPrefix + 'education/residency/schizophrenia/contacts/home.html');
g_navNode_4_0_5_3=g_navNode_4_0_5.addNode('17947','How to Apply',ssUrlPrefix + 'education/residency/schizophrenia/apply/home.html');
g_navNode_4_0_5_4=g_navNode_4_0_5.addNode('17948','Research Duties and Training',ssUrlPrefix + 'education/residency/schizophrenia/research/home.html');
g_navNode_4_0_5_5=g_navNode_4_0_5.addNode('17949','Veterans Affairs Medical Center',ssUrlPrefix + 'education/residency/schizophrenia/vamc/home.html');
g_navNode_4_1=g_navNode_4.addNode('17966','Medical Students',ssUrlPrefix + 'education/medstudent/home.html','ShowRelatedLinks==true','ShowWhatsInside==true');
g_navNode_4_1_0=g_navNode_4_1.addNode('17967','Year One - Human Behavior Course',ssUrlPrefix + 'education/medstudent/yr1/home.html','ShowDownloads==true','ShowRelatedLinks==true');
g_navNode_4_1_1=g_navNode_4_1.addNode('129732','Year Two - Psyche Course',ssUrlPrefix + 'education/medstudent/yr2/home.html','ShowDownloads==true','ShowRelatedLinks==true');
g_navNode_4_1_2=g_navNode_4_1.addNode('129738','Year Three \x26amp\x3b Four - Psychiatry Externship',ssUrlPrefix + 'education/medstudent/yr3\x264/home.html','ShowDownloads==true','ShowRelatedLinks==true','ShowWhatsInside==true');
g_navNode_4_1_2_0=g_navNode_4_1_2.addNode('129763','Shelf Exam dates and Locations',ssUrlPrefix + 'education/medstudent/yr3\x264/shelfexam/home.html');
g_navNode_4_1_2_1=g_navNode_4_1_2.addNode('129765','Sites and Contacts',ssUrlPrefix + 'education/medstudent/yr3\x264/sites/home.html');
g_navNode_4_1_2_2=g_navNode_4_1_2.addNode('129769','Student Responsibilities',ssUrlPrefix + 'education/medstudent/yr3\x264/responsibilities/home.html');
g_navNode_4_1_2_3=g_navNode_4_1_2.addNode('129773','Student Supervision',ssUrlPrefix + 'education/medstudent/yr3\x264/supervision/home.html');
g_navNode_4_2=g_navNode_4.addNode('40339','Grand Rounds',ssUrlPrefix + 'education/grandrounds/home.html','ShowWhatsInside==true');
g_navNode_4_2_0=g_navNode_4_2.addNode('11812','2009-2010 Grand Rounds',ssUrlPrefix + 'education/grandrounds/09-10GrandRounds/home.html');
g_navNode_4_2_1=g_navNode_4_2.addNode('148036','2008-2009 Grand Rounds',ssUrlPrefix + 'education/grandrounds/Current2/home.html');
g_navNode_4_2_2=g_navNode_4_2.addNode('103049','Previous Years\' Grand Rounds',ssUrlPrefix + 'education/grandrounds/Previous/home.html','ShowWhatsInside==true');
g_navNode_4_2_2_0=g_navNode_4_2_2.addNode('105959','2006-2007 Grand Rounds',ssUrlPrefix + 'education/grandrounds/Previous/Lastyear/home.html');
g_navNode_4_2_2_1=g_navNode_4_2_2.addNode('103050','Grand Rounds 2005 - 2006',ssUrlPrefix + 'education/grandrounds/Previous/Y20052006/home.html');
g_navNode_4_3=g_navNode_4.addNode('74541','CAPY Courses',ssUrlPrefix + 'education/capy/home.html');
g_navNode_4_4=g_navNode_4.addNode('40344','Patients and Families',ssUrlPrefix + 'education/patients/home.html','ShowRelatedLinks==true');
g_navNode_5=g_navNode_Root.addNode('17679','Faculty',ssUrlPrefix + 'faculty/home.html');
g_navNode_6=g_navNode_Root.addNode('18046','Make a Gift',ssUrlPrefix + 'gift/home.html');
g_navNode_7=g_navNode_Root.addNode('18037','Reaching Us',ssUrlPrefix + 'reachingus/home.html','ShowWhatsInside==true');
g_navNode_7_0=g_navNode_7.addNode('18040','Directions',ssUrlPrefix + 'reachingus/directions/home.html');
g_navNode_7_1=g_navNode_7.addNode('18043','Parking',ssUrlPrefix + 'reachingus/parking/home.html');
g_navNode_8=g_navNode_Root.addNode('18013','Research Activities',ssUrlPrefix + 'research/home.html','ShowRelatedLinks==true','ShowWhatsInside==true');
g_navNode_8_0=g_navNode_8.addNode('18014','Ambulatory Research Center',ssUrlPrefix + 'research/arc/home.html','ShowRightNavImage==true','ShowWhatsInside==true');
g_navNode_8_0_0=g_navNode_8_0.addNode('39325','Current Studies',ssUrlPrefix + 'research/arc/currstudies/home.html');
g_navNode_8_1=g_navNode_8.addNode('40244','Early Risers Skills for Success',ssUrlPrefix + 'research/earlyrisers/home.html','ShowRelatedLinks==true','ShowWhatsInside==true');
g_navNode_8_1_0=g_navNode_8_1.addNode('40290','Program Overview',ssUrlPrefix + 'research/earlyrisers/overview/home.html','ShowWhatsInside==true');
g_navNode_8_1_1=g_navNode_8_1.addNode('40268','Model Program Status',ssUrlPrefix + 'research/earlyrisers/status/home.html');
g_navNode_8_1_2=g_navNode_8_1.addNode('41378','Program Evaluation',ssUrlPrefix + 'research/earlyrisers/evaluation/home.html');
g_navNode_8_1_3=g_navNode_8_1.addNode('40262','Current Studies',ssUrlPrefix + 'research/earlyrisers/currentstudies/home.html');
g_navNode_8_1_4=g_navNode_8_1.addNode('40257','Publications',ssUrlPrefix + 'research/earlyrisers/publications/home.html');
g_navNode_8_1_5=g_navNode_8_1.addNode('40281','People',ssUrlPrefix + 'research/earlyrisers/people/home.html');
g_navNode_8_1_6=g_navNode_8_1.addNode('41384','Contact Us',ssUrlPrefix + 'research/earlyrisers/contact/home.html');
g_navNode_8_2=g_navNode_8.addNode('51856','Eating Disorder and Vagus Nerve',ssUrlPrefix + 'research/eating/home.html','ShowWhatsInside==false');
g_navNode_8_3=g_navNode_8.addNode('107412','Eating Disorders Research Program',ssUrlPrefix + 'research/eatingdisorders/home.html','ShowWhatsInside==true');
g_navNode_8_4=g_navNode_8.addNode('124757','Marijuana and Psychosis',ssUrlPrefix + 'research/marijuana/home.html');
g_navNode_8_5=g_navNode_8.addNode('135678','Schizophrenia Program',ssUrlPrefix + 'research/schiz/home.html','ShowRelatedLinks==true','ShowWhatsInside==true');
g_navNode_8_5_0=g_navNode_8_5.addNode('135781','Archived Family Psychoed',ssUrlPrefix + 'research/schiz/archivedfamilyed/home.html');
g_navNode_8_5_1=g_navNode_8_5.addNode('200864','Current Family Psychoeducation Series',ssUrlPrefix + 'research/schiz/Familyed/home.html');
g_navNode_8_5_2=g_navNode_8_5.addNode('200873','Events',ssUrlPrefix + 'research/schiz/events/home.html');
if (SSContributor)
{
g_navNode_9=g_navNode_Root.addNode('8270','SSManager',ssUrlPrefix + 'ssmanager/home.html','contributorOnly==TRUE');
}
