/////////////////////////////////////////////////////////////////////////////
// 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('206','Home',ssUrlPrefix + 'index.htm',null,'GoogleAnalytics==Dja53Y7u9ADwqgpr6UM2EMLrzTmVbyDdDXLpd7XpO24\x3d','GoogleVerification==Dja53Y7u9ADwqgpr6UM2EMLrzTmVbyDdDXLpd7XpO24\x3d','Navigation==Top');
g_navNode_0=g_navNode_Root.addNode('207','Patients',ssUrlPrefix + 'patients/index.htm','Navigation==Top','customPageTitle==Patients ');
g_navNode_0_0=g_navNode_0.addNode('218','Outpatients',ssUrlPrefix + 'patients/outpatients/index.htm','customPageTitle==Patients \x7c Outpatients');
g_navNode_0_0_0=g_navNode_0_0.addNode('3592','What you need to bring',ssUrlPrefix + 'patients/outpatients/whattobring/index.htm','customPageTitle==Patients \x7c Outpatients');
g_navNode_0_0_1=g_navNode_0_0.addNode('3593','When you arrive',ssUrlPrefix + 'patients/outpatients/whenyouarrive/index.htm','customPageTitle==Patients \x7c Outpatients');
g_navNode_0_0_2=g_navNode_0_0.addNode('3594','Be on time ',ssUrlPrefix + 'patients/outpatients/ontime/index.htm','customPageTitle==Patients \x7c Outpatients');
g_navNode_0_0_3=g_navNode_0_0.addNode('3595','During your consultation',ssUrlPrefix + 'patients/outpatients/duringyourconsultation/index.htm','customPageTitle==Patients \x7c Outpatients');
g_navNode_0_0_4=g_navNode_0_0.addNode('3596','After your consultation',ssUrlPrefix + 'patients/outpatients/afteryourconsultation/index.htm','customPageTitle==Patients \x7c Outpatients');
g_navNode_0_0_5=g_navNode_0_0.addNode('3597','Waiting times',ssUrlPrefix + 'patients/outpatients/waitingtimes/index.htm','customPageTitle==Patients \x7c Outpatients');
g_navNode_0_0_6=g_navNode_0_0.addNode('3598','Common procedures',ssUrlPrefix + 'patients/outpatients/commonprocedures/index.htm','customPageTitle==Patients \x7c Outpatients');
g_navNode_0_0_7=g_navNode_0_0.addNode('3599','Patient records and confidentiality',ssUrlPrefix + 'patients/outpatients/patientconfidentiality/index.htm','customPageTitle==Patients \x7c Outpatients');
g_navNode_0_0_8=g_navNode_0_0.addNode('3600','Consenting to treatment',ssUrlPrefix + 'patients/outpatients/consentingtotreatment/index.htm','customPageTitle==Patients \x7c Outpatients');
g_navNode_0_0_9=g_navNode_0_0.addNode('6138','Your NHS number',ssUrlPrefix + 'patients/outpatients/nhs-number/index.htm','customPageTitle==Patients \x7c Outpatients');
g_navNode_0_0_10=g_navNode_0_0.addNode('3601','Help with travel costs',ssUrlPrefix + 'patients/outpatients/helpwithtravelcosts/index.htm','customPageTitle==Patients \x7c Outpatients');
g_navNode_0_0_11=g_navNode_0_0.addNode('3602','Further help and support',ssUrlPrefix + 'patients/outpatients/furtherhelpandsupport/index.htm','customPageTitle==Patients \x7c Outpatients');
g_navNode_0_1=g_navNode_0.addNode('219','Inpatients',ssUrlPrefix + 'patients/inpatients/index.htm','customPageTitle==Patients \x7c Inpatients ');
g_navNode_0_1_0=g_navNode_0_1.addNode('3603','Cancellations',ssUrlPrefix + 'patients/inpatients/cancellations/index.htm','customPageTitle==Patients \x7c Inpatients ');
g_navNode_0_1_1=g_navNode_0_1.addNode('3604','What you need to bring',ssUrlPrefix + 'patients/inpatients/whatyouneedtobring/index.htm','customPageTitle==Patients \x7c Inpatients ');
g_navNode_0_1_2=g_navNode_0_1.addNode('3605','When you arrive',ssUrlPrefix + 'patients/inpatients/whenyouarrive/index.htm','customPageTitle==Patients \x7c Inpatients ');
g_navNode_0_1_3=g_navNode_0_1.addNode('3606','What to expect',ssUrlPrefix + 'patients/inpatients/whattoexpect/index.htm','customPageTitle==Patients \x7c Inpatients ');
g_navNode_0_1_4=g_navNode_0_1.addNode('3607','Infection prevention and control',ssUrlPrefix + 'patients/inpatients/hygieneandinfectioncontrol/index.htm','customPageTitle==Patients \x7c Inpatients ');
g_navNode_0_1_5=g_navNode_0_1.addNode('3608','Your visitors',ssUrlPrefix + 'patients/inpatients/yourvisitors/index.htm','customPageTitle==Patients \x7c Inpatients ');
g_navNode_0_1_6=g_navNode_0_1.addNode('3609','Consenting to treatment',ssUrlPrefix + 'patients/inpatients/consentingtotreatment/index.htm','customPageTitle==Patients \x7c Inpatients ');
g_navNode_0_1_7=g_navNode_0_1.addNode('3610','Leaving hospital',ssUrlPrefix + 'patients/inpatients/leavinghospital/index.htm');
g_navNode_0_1_8=g_navNode_0_1.addNode('3611','Patient records and confidentiality',ssUrlPrefix + 'patients/inpatients/patientconfidentiality/index.htm','customPageTitle==Patients \x7c Inpatients ');
g_navNode_0_1_9=g_navNode_0_1.addNode('6139','Your NHS number',ssUrlPrefix + 'patients/inpatients/nhs-number/index.htm','customPageTitle==Patients \x7c Inpatients ');
g_navNode_0_1_10=g_navNode_0_1.addNode('3612','Further help and support',ssUrlPrefix + 'patients/inpatients/furtherhelpandsupport/index.htm','customPageTitle==Patients \x7c Inpatients ');
g_navNode_0_2=g_navNode_0.addNode('215','Getting here',ssUrlPrefix + 'patients/location/index.htm','customPageTitle==Patients \x7c Getting here ');
g_navNode_0_3=g_navNode_0.addNode('3881','Contact us',ssUrlPrefix + 'patients/contact/index.htm','customPageTitle==Patients \x7c Contact us ');
g_navNode_0_4=g_navNode_0.addNode('224','Infection prevention and control',ssUrlPrefix + 'patients/ipc/index.htm','customPageTitle==Patients \x7c Infection prevention and control ');
g_navNode_0_5=g_navNode_0.addNode('221','Facilities and shops',ssUrlPrefix + 'patients/facilities/index.htm','customPageTitle==Patients \x7c Facilities and shops ');
g_navNode_0_6=g_navNode_0.addNode('216','Making an appointment',ssUrlPrefix + 'patients/appointments/index.htm','customPageTitle==Patients \x7c Making an appointment ');
g_navNode_0_6_0=g_navNode_0_6.addNode('3583','How Choose and Book works',ssUrlPrefix + 'patients/appointments/howchooseandbookworks/index.htm','customPageTitle==Patients \x7c Making an appointment ');
g_navNode_0_6_1=g_navNode_0_6.addNode('3584','How to book an appointment',ssUrlPrefix + 'patients/appointments/howtobookanappointment/index.htm','customPageTitle==Patients \x7c Making an appointment ');
g_navNode_0_6_2=g_navNode_0_6.addNode('3585','Why choose our hospitals?',ssUrlPrefix + 'patients/appointments/whychooseourhospitals/index.htm','customPageTitle==Patients \x7c Making an appointment ');
g_navNode_0_6_3=g_navNode_0_6.addNode('3586','Further information',ssUrlPrefix + 'patients/appointments/furtherinformation/index.htm','customPageTitle==Patients \x7c Making an appointment ');
g_navNode_0_7=g_navNode_0.addNode('217','In an emergency',ssUrlPrefix + 'patients/emergency/index.htm','customPageTitle==Patients \x7c In an emergency');
g_navNode_0_7_0=g_navNode_0_7.addNode('3588','When should I come to A\x26E?',ssUrlPrefix + 'patients/emergency/whenshouldicome/index.htm','customPageTitle==Patient \x7c In an emergency ');
g_navNode_0_7_1=g_navNode_0_7.addNode('3589','How long will I wait? ',ssUrlPrefix + 'patients/emergency/howlongwilliwait/index.htm','customPageTitle==Patient \x7c In an emergency ');
g_navNode_0_7_2=g_navNode_0_7.addNode('3590','Alternatives to A\x26E',ssUrlPrefix + 'patients/emergency/alternatives/index.htm','customPageTitle==Patient \x7c In an emergency ');
g_navNode_0_7_3=g_navNode_0_7.addNode('3591','Alternative A\x26E for children',ssUrlPrefix + 'patients/emergency/childrenalternatives/index.htm','customPageTitle==Patient \x7c In an emergency ');
g_navNode_0_8=g_navNode_0.addNode('2803','Seasonal flu \x28Influenza\x29',ssUrlPrefix + 'patients/flu/index.htm','customPageTitle==Patients \x7c Seasonal flue \x28Influenza\x29');
g_navNode_0_9=g_navNode_0.addNode('220','Private patients',ssUrlPrefix + 'patients/privatehealthcare/index.htm','customPageTitle==Patients \x7c Private patients ');
g_navNode_0_10=g_navNode_0.addNode('7364','GP practice',ssUrlPrefix + 'patients/GP-practice/index.htm');
g_navNode_0_11=g_navNode_0.addNode('222','Help and support',ssUrlPrefix + 'patients/helpandsupport/index.htm','customPageTitle==Patients \x7c Help and support ');
g_navNode_0_11_0=g_navNode_0_11.addNode('3622','PALS',ssUrlPrefix + 'patients/helpandsupport/pals/index.htm','customPageTitle==Patients \x7c Help and support ');
g_navNode_0_11_1=g_navNode_0_11.addNode('7486','Support centres',ssUrlPrefix + 'patients/helpandsupport/support-centres/index.htm');
g_navNode_0_11_2=g_navNode_0_11.addNode('3628','Support groups ',ssUrlPrefix + 'patients/helpandsupport/supportgroups/index.htm','customPageTitle==Patients \x7c Help and support ');
g_navNode_0_11_2_0=g_navNode_0_11_2.addNode('3629','Brain injury',ssUrlPrefix + 'patients/helpandsupport/supportgroups/braininjury/index.htm');
g_navNode_0_11_2_1=g_navNode_0_11_2.addNode('3630','Cancer',ssUrlPrefix + 'patients/helpandsupport/supportgroups/cancer/index.htm');
g_navNode_0_11_2_2=g_navNode_0_11_2.addNode('3631','Coeliac disease',ssUrlPrefix + 'patients/helpandsupport/supportgroups/coeliacdisease/index.htm');
g_navNode_0_11_2_4=g_navNode_0_11_2.addNode('3633','Diabetes',ssUrlPrefix + 'patients/helpandsupport/supportgroups/diabetes/index.htm');
g_navNode_0_11_2_5=g_navNode_0_11_2.addNode('3634','Heart conditions',ssUrlPrefix + 'patients/helpandsupport/supportgroups/heartconditions/index.htm');
g_navNode_0_11_2_6=g_navNode_0_11_2.addNode('4214','HIV/AIDS',ssUrlPrefix + 'patients/helpandsupport/supportgroups/hiv_aids/index.htm');
g_navNode_0_11_2_7=g_navNode_0_11_2.addNode('3638','Kidney conditions',ssUrlPrefix + 'patients/helpandsupport/supportgroups/kidneyconditions/index.htm');
g_navNode_0_11_2_8=g_navNode_0_11_2.addNode('3635','Maternity',ssUrlPrefix + 'patients/helpandsupport/supportgroups/maternity/index.htm');
g_navNode_0_11_2_9=g_navNode_0_11_2.addNode('3636','MRKH syndrome',ssUrlPrefix + 'patients/helpandsupport/supportgroups/mrkh-syndrome/index.htm');
g_navNode_0_11_2_10=g_navNode_0_11_2.addNode('3637','Multiple sclerosis',ssUrlPrefix + 'patients/helpandsupport/supportgroups/multiplesclerosis/index.htm');
g_navNode_0_11_2_11=g_navNode_0_11_2.addNode('3639','Pulmonary hypertension',ssUrlPrefix + 'patients/helpandsupport/supportgroups/pulmonaryhypertension/index.htm');
g_navNode_0_11_3=g_navNode_0_11.addNode('3640','Chaplaincy',ssUrlPrefix + 'patients/helpandsupport/chaplaincy/index.htm','customPageTitle==Patients \x7c Help and support ');
g_navNode_0_12=g_navNode_0.addNode('223','Our performance',ssUrlPrefix + 'patients/ourstandards/index.htm','customPageTitle==Patients \x7c Our performance ');
g_navNode_0_12_0=g_navNode_0_12.addNode('423','Patient testimonials',ssUrlPrefix + 'patients/ourstandards/testimonials/index.htm','customPageTitle==Patients \x7c Our performance ');
g_navNode_0_12_1=g_navNode_0_12.addNode('7627','A\x26E clinical quality indicators',ssUrlPrefix + 'patients/ourstandards/emergency-care-quality-indicators/index.htm');
g_navNode_0_12_1_0=g_navNode_0_12_1.addNode('7628','St Mary\'s Hospital ',ssUrlPrefix + 'patients/ourstandards/emergency-care-quality-indicators/st-Marys-Hospital-performance/index.htm');
g_navNode_0_12_1_0_0=g_navNode_0_12_1_0.addNode('7732','July 2011 data',ssUrlPrefix + 'patients/ourstandards/emergency-care-quality-indicators/st-Marys-Hospital-performance/july-data/index.htm');
g_navNode_0_12_1_0_1=g_navNode_0_12_1_0.addNode('7799','August 2011 data',ssUrlPrefix + 'patients/ourstandards/emergency-care-quality-indicators/st-Marys-Hospital-performance/august/index.htm');
g_navNode_0_12_1_0_2=g_navNode_0_12_1_0.addNode('7878','September 2011 data',ssUrlPrefix + 'patients/ourstandards/emergency-care-quality-indicators/st-Marys-Hospital-performance/september-data/index.htm');
g_navNode_0_12_1_0_3=g_navNode_0_12_1_0.addNode('8029','October 2011 data',ssUrlPrefix + 'patients/ourstandards/emergency-care-quality-indicators/st-Marys-Hospital-performance/october-2011/index.htm');
g_navNode_0_12_1_1=g_navNode_0_12_1.addNode('7629','Charing Cross Hospital',ssUrlPrefix + 'patients/ourstandards/emergency-care-quality-indicators/charing-cross-hospital-performance/index.htm');
g_navNode_0_12_1_1_0=g_navNode_0_12_1_1.addNode('7733','July 2011 data',ssUrlPrefix + 'patients/ourstandards/emergency-care-quality-indicators/charing-cross-hospital-performance/july-data/index.htm');
g_navNode_0_12_1_1_1=g_navNode_0_12_1_1.addNode('7800','August 2011 data',ssUrlPrefix + 'patients/ourstandards/emergency-care-quality-indicators/charing-cross-hospital-performance/august/index.htm');
g_navNode_0_12_1_1_2=g_navNode_0_12_1_1.addNode('7879','September 2011 data',ssUrlPrefix + 'patients/ourstandards/emergency-care-quality-indicators/charing-cross-hospital-performance/september-data/index.htm');
g_navNode_0_12_1_1_3=g_navNode_0_12_1_1.addNode('8030','October 2011 data',ssUrlPrefix + 'patients/ourstandards/emergency-care-quality-indicators/charing-cross-hospital-performance/october-2011/index.htm');
g_navNode_0_12_1_2=g_navNode_0_12_1.addNode('7630','Hammersmith Hospital ',ssUrlPrefix + 'patients/ourstandards/emergency-care-quality-indicators/hammersmith-hospital-performance/index.htm');
g_navNode_0_12_1_2_0=g_navNode_0_12_1_2.addNode('7734','July 2011 data',ssUrlPrefix + 'patients/ourstandards/emergency-care-quality-indicators/hammersmith-hospital-performance/july-data/index.htm');
g_navNode_0_12_1_2_1=g_navNode_0_12_1_2.addNode('7801','August 2011 data',ssUrlPrefix + 'patients/ourstandards/emergency-care-quality-indicators/hammersmith-hospital-performance/august/index.htm');
g_navNode_0_12_1_2_2=g_navNode_0_12_1_2.addNode('7880','September 2011 data',ssUrlPrefix + 'patients/ourstandards/emergency-care-quality-indicators/hammersmith-hospital-performance/september-data/index.htm');
g_navNode_0_12_1_2_3=g_navNode_0_12_1_2.addNode('8031','October 2011 data',ssUrlPrefix + 'patients/ourstandards/emergency-care-quality-indicators/hammersmith-hospital-performance/october-2011/index.htm');
g_navNode_0_12_1_3=g_navNode_0_12_1.addNode('7736','Patient service experience ',ssUrlPrefix + 'patients/ourstandards/emergency-care-quality-indicators/patient-service-experience/index.htm');
g_navNode_0_12_1_3_0=g_navNode_0_12_1_3.addNode('7802','Emergency department',ssUrlPrefix + 'patients/ourstandards/emergency-care-quality-indicators/patient-service-experience/emergency-department/index.htm');
g_navNode_0_13=g_navNode_0.addNode('1469','Improving your experience',ssUrlPrefix + 'patients/patient_experience/index.htm','customPageTitle==Patients \x7c Improving your experience ');
g_navNode_0_14=g_navNode_0.addNode('5736','Your rights and responsibilities',ssUrlPrefix + 'patients/rights-and-responsibilities/index.htm','customPageTitle==Patients \x7c Your rights and responsibilities');
g_navNode_0_14_0=g_navNode_0_14.addNode('5914','Your mental health rights',ssUrlPrefix + 'patients/rights-and-responsibilities/mental-health-rights/index.htm','customPageTitle==Patients \x7c Your rights and responsibilities');
g_navNode_0_15=g_navNode_0.addNode('6251','Comments and suggestions',ssUrlPrefix + 'patients/comments/index.htm','customPageTitle==Patients \x7c Comments and suggestions ');
g_navNode_0_16=g_navNode_0.addNode('6254','Get involved',ssUrlPrefix + 'patients/get-involved/index.htm','customPageTitle==Patients \x7c Get involved');
g_navNode_0_18=g_navNode_0.addNode('3642','Making a complaint',ssUrlPrefix + 'patients/complaints/index.htm','customPageTitle==Patients \x7c Making a complaint');
g_navNode_0_19=g_navNode_0.addNode('6326','Organ and tissue donation',ssUrlPrefix + 'patients/organ-tissue-donation/index.htm','customPageTitle==Patients Organ tissue donation ');
g_navNode_0_20=g_navNode_0.addNode('7067','Cancer improvements',ssUrlPrefix + 'patients/cancer-improvements/index.htm');
g_navNode_1=g_navNode_Root.addNode('208','Visitors',ssUrlPrefix + 'visitors/index.htm','Navigation==Top','customPageTitle==Visitors');
g_navNode_1_0=g_navNode_1.addNode('226','Getting here',ssUrlPrefix + 'visitors/location/index.htm','customPageTitle==Visitors \x7c Getting here ');
g_navNode_1_1=g_navNode_1.addNode('4030','Contact us',ssUrlPrefix + 'visitors/contactus/index.htm','customPageTitle==Visitors \x7c Contact us ');
g_navNode_1_2=g_navNode_1.addNode('3660','General information ',ssUrlPrefix + 'visitors/generalinformation/index.htm','customPageTitle==Visitors \x7c Information to help you when you vist our hospitals ');
g_navNode_1_3=g_navNode_1.addNode('231','Infection prevention and control',ssUrlPrefix + 'visitors/ipc/index.htm','customPageTitle==Visitors \x7c Infection prevention and control');
g_navNode_1_4=g_navNode_1.addNode('227','Visiting times',ssUrlPrefix + 'visitors/visitingtimes/index.htm','customPageTitle==Visitors \x7c Visiting times ');
g_navNode_1_5=g_navNode_1.addNode('6849','Seasonal flu \x28Influenza\x29',ssUrlPrefix + 'visitors/influenza/index.htm','customPageTitle==Vistors \x7c Seasonal flu \x28Influenza\x29');
g_navNode_1_6=g_navNode_1.addNode('229','Facilities and shops',ssUrlPrefix + 'visitors/facilities/index.htm','customPageTitle==Visitors \x7c Facilities and shops');
g_navNode_1_7=g_navNode_1.addNode('228','Help and support',ssUrlPrefix + 'visitors/helpandsupport/index.htm','customPageTitle== Visitors \x7c Help and support');
g_navNode_1_7_1=g_navNode_1_7.addNode('3662','Brain injury',ssUrlPrefix + 'visitors/helpandsupport/braininjury/index.htm','customPageTitle== Visitors \x7c Help and support');
g_navNode_1_7_2=g_navNode_1_7.addNode('3663','Cancer',ssUrlPrefix + 'visitors/helpandsupport/cancer/index.htm','customPageTitle== Visitors \x7c Help and support');
g_navNode_1_7_3=g_navNode_1_7.addNode('3664','Heart conditions',ssUrlPrefix + 'visitors/helpandsupport/heartconditions/index.htm','customPageTitle== Visitors \x7c Help and support');
g_navNode_1_7_4=g_navNode_1_7.addNode('3665','Kidney conditions',ssUrlPrefix + 'visitors/helpandsupport/kidneyconditions/index.htm','customPageTitle== Visitors \x7c Help and support');
g_navNode_1_7_5=g_navNode_1_7.addNode('3667','MRKH syndrome',ssUrlPrefix + 'visitors/helpandsupport/mrkh-syndrome/index.htm','customPageTitle== Visitors \x7c Help and support');
g_navNode_1_7_6=g_navNode_1_7.addNode('3668','Multiple sclerosis',ssUrlPrefix + 'visitors/helpandsupport/multiplesclerosis/index.htm','customPageTitle== Visitors \x7c Help and support');
g_navNode_1_7_7=g_navNode_1_7.addNode('3669','Pulmonary hypertension',ssUrlPrefix + 'visitors/helpandsupport/pulmonaryhypertension/index.htm','customPageTitle== Visitors \x7c Help and support');
g_navNode_1_7_8=g_navNode_1_7.addNode('7037','Stroke support group',ssUrlPrefix + 'visitors/helpandsupport/stroke-support-group/index.htm','customPageTitle== Visitors \x7c Help and support');
g_navNode_1_8=g_navNode_1.addNode('6255','Comments and suggestions',ssUrlPrefix + 'visitors/comments/index.htm','customPageTitle==Visitors \x7c Your feedback');
g_navNode_1_10=g_navNode_1.addNode('6253','Get involved',ssUrlPrefix + 'visitors/get-involved/index.htm','customPageTitle== Visitors \x7c Get involved');
g_navNode_1_11=g_navNode_1.addNode('1274','Making a complaint',ssUrlPrefix + 'visitors/complaints/index.htm','customPageTitle==Visitors \x7c Making a complaint');
g_navNode_1_13=g_navNode_1.addNode('6327','Organ and tissue donation',ssUrlPrefix + 'visitors/organ-tissue-donation/index.htm','customPageTitle==Visitors \x7c Organ and tissue donation ');
g_navNode_2=g_navNode_Root.addNode('209','Our services',ssUrlPrefix + 'services/index.htm','Navigation==Top','customPageTitle==Our services ');
g_navNode_2_0=g_navNode_2.addNode('3403','A\x26E',ssUrlPrefix + 'services/accidentandemergency/index.htm','Synonyms==accident and emergency','customPageTitle==Our services \x7c A\x26E ');
g_navNode_2_1=g_navNode_2.addNode('3412','Allergy',ssUrlPrefix + 'services/allergy/index.htm','customPageTitle==Our services \x7c Allergy ');
g_navNode_2_2=g_navNode_2.addNode('3413','Anaesthetics',ssUrlPrefix + 'services/anaesthetics/index.htm','customPageTitle==Our services \x7c Anaesthetics');
g_navNode_2_3=g_navNode_2.addNode('7924','Audiology and hearing services',ssUrlPrefix + 'services/audiology/index.htm');
g_navNode_2_4=g_navNode_2.addNode('3414','Bariatric services and surgery',ssUrlPrefix + 'services/bariatricservices/index.htm','customPageTitle==Our services \x7c Bariatric services and surgery');
g_navNode_2_5=g_navNode_2.addNode('399','Blood test',ssUrlPrefix + 'services/bloodtest/index.htm','customPageTitle==Our services \x7c Blood test');
g_navNode_2_6=g_navNode_2.addNode('1677','Bowel cancer screening',ssUrlPrefix + 'services/bowelcancerscreening/index.htm','customPageTitle==Our services \x7c Bowel cancer screening');
g_navNode_2_7=g_navNode_2.addNode('4427','Breast care and surgery services',ssUrlPrefix + 'services/breastcareandsurgeryservices/index.htm','customPageTitle==Our services \x7c Breast care and surgery services');
g_navNode_2_8=g_navNode_2.addNode('3415','Breast screening services ',ssUrlPrefix + 'services/breastscreeningservices/index.htm','customPageTitle==Our services \x7c Breast screening services ');
g_navNode_2_9=g_navNode_2.addNode('3416','Cancer services',ssUrlPrefix + 'services/cancerservices/index.htm','customPageTitle==Our services \x7c Cancer services ');
g_navNode_2_10=g_navNode_2.addNode('3417','Cardiology',ssUrlPrefix + 'services/cardiology/index.htm','customPageTitle==Our services \x7c Cardiology');
g_navNode_2_11=g_navNode_2.addNode('3418','Cardiothoracic surgery',ssUrlPrefix + 'services/cardiothoracicsurgery/index.htm','customPageTitle==Our services \x7c Cardiothoracic surgery ');
g_navNode_2_12=g_navNode_2.addNode('3420','Chest medicine',ssUrlPrefix + 'services/chestmedicine/index.htm','Synonyms==respiratory','customPageTitle==Our services \x7c Chest medicine ');
g_navNode_2_13=g_navNode_2.addNode('3421','Clinical haematology',ssUrlPrefix + 'services/clinicalhaematology/index.htm','customPageTitle==Our services \x7c Clinical haematology ');
g_navNode_2_14=g_navNode_2.addNode('3825','Colorectal surgery',ssUrlPrefix + 'services/colorectalsurgery/index.htm','customPageTitle==Our services \x7c Colorectal surgery ');
g_navNode_2_15=g_navNode_2.addNode('3423','Critical care',ssUrlPrefix + 'services/criticalcare/index.htm','customPageTitle==Our services \x7c Critical care');
g_navNode_2_16=g_navNode_2.addNode('3424','Dermatology',ssUrlPrefix + 'services/dermatology/index.htm','customPageTitle==Our services \x7c Dermatology ');
g_navNode_2_17=g_navNode_2.addNode('3425','Elderly medicine',ssUrlPrefix + 'services/elderlycare/index.htm','Synonyms==care of the elderly','customPageTitle==Our services \x7c Elderly medicine');
g_navNode_2_18=g_navNode_2.addNode('3426','Emergency services',ssUrlPrefix + 'services/emergencyservices/index.htm','customPageTitle==Our services \x7c Emergency services');
g_navNode_2_19=g_navNode_2.addNode('3427','Endocrine surgery',ssUrlPrefix + 'services/endocrinesurgery/index.htm','customPageTitle==Our services \x7c Endocrine surgery');
g_navNode_2_20=g_navNode_2.addNode('3428','Endocrinology/diabetic medicine',ssUrlPrefix + 'services/endocrinology/index.htm','Synonyms==diabetes, endocrine','customPageTitle==Our services \x7c Endocrnology/diabetic medicine');
g_navNode_2_21=g_navNode_2.addNode('3429','ENT/audiology',ssUrlPrefix + 'services/entaudiology/index.htm','Synonyms==head and neck, ear, nose, throat,','customPageTitle==Our services \x7c ENT/audiology ');
g_navNode_2_22=g_navNode_2.addNode('3430','Gastroenterology',ssUrlPrefix + 'services/gastroenterology/index.htm','customPageTitle==Our services \x7c Gastroenterology');
g_navNode_2_23=g_navNode_2.addNode('3431','Gender surgery',ssUrlPrefix + 'services/gendersurgery/index.htm','customPageTitle==Our services \x7c Gender surgery');
g_navNode_2_24=g_navNode_2.addNode('3432','General surgery',ssUrlPrefix + 'services/generalsurgery/index.htm','customPageTitle==Our services \x7c General surgery');
g_navNode_2_25=g_navNode_2.addNode('7363','GP practice',ssUrlPrefix + 'services/GP-practice/index.htm');
g_navNode_2_26=g_navNode_2.addNode('3434','Gynaecology',ssUrlPrefix + 'services/gynaecology/index.htm','customPageTitle==Our services \x7c Gynaecology');
g_navNode_2_28=g_navNode_2.addNode('3436','Hepatology',ssUrlPrefix + 'services/hepatology/index.htm','customPageTitle==Our services \x7c Hepatology ');
g_navNode_2_29=g_navNode_2.addNode('3890','HTLV service',ssUrlPrefix + 'services/htlvservice/index.htm','customPageTitle==Our services \x7c HTLV service');
g_navNode_2_30=g_navNode_2.addNode('3438','Imaging',ssUrlPrefix + 'services/imaging/index.htm','customPageTitle==Our services \x7c Imaging');
g_navNode_2_31=g_navNode_2.addNode('3439','Infectious diseases',ssUrlPrefix + 'services/infectiousdiseases/index.htm','customPageTitle==Our services \x7c Infectious diseases');
g_navNode_2_32=g_navNode_2.addNode('3440','Infertility services ',ssUrlPrefix + 'services/infertilityservices/index.htm','customPageTitle==Our services \x7c Infertility services');
g_navNode_2_33=g_navNode_2.addNode('6619','Liaison psychiatry',ssUrlPrefix + 'services/liaison-psychiatry/index.htm','customPageTitle==Our services \x7c Liaison psychiatry ');
g_navNode_2_34=g_navNode_2.addNode('3441','Lipidology',ssUrlPrefix + 'services/lipidology/index.htm','customPageTitle==Our services \x7c Lipidology ');
g_navNode_2_35=g_navNode_2.addNode('3437','Liver, pancreas and biliary surgery',ssUrlPrefix + 'services/liverpancreasandbiliarysurgery/index.htm','customPageTitle==Our services \x7c Liver, pancreas and biliary surgery');
g_navNode_2_36=g_navNode_2.addNode('3442','Maternity and obstetrics',ssUrlPrefix + 'services/maternityandobstetrics/index.htm','customPageTitle==Our services \x7c maternity and obstetrics');
g_navNode_2_37=g_navNode_2.addNode('3443','Nephrology',ssUrlPrefix + 'services/nephrology/index.htm','Synonyms==renal','customPageTitle==Our services \x7c Nephrology');
g_navNode_2_38=g_navNode_2.addNode('3444','Neurology',ssUrlPrefix + 'services/neurology/index.htm','customPageTitle==Our services \x7c Neurology ');
g_navNode_2_39=g_navNode_2.addNode('3445','Neurosurgery',ssUrlPrefix + 'services/neurosurgery/index.htm','customPageTitle==Our services \x7c Neurosurgery');
g_navNode_2_40=g_navNode_2.addNode('3752','Nutrition and dietetics',ssUrlPrefix + 'services/nutritionanddietetics/index.htm','customPageTitle==Our services \x7c Nutrition and dietetics ');
g_navNode_2_41=g_navNode_2.addNode('3695','Occupational health',ssUrlPrefix + 'services/occupationalhealth/index.htm','customPageTitle==Our services \x7c Occupational health ');
g_navNode_2_42=g_navNode_2.addNode('3446','Occupational therapy',ssUrlPrefix + 'services/occupationaltherapy/index.htm','customPageTitle==Our services \x7c Occupational therapy ');
g_navNode_2_43=g_navNode_2.addNode('3447','Ophthalmology',ssUrlPrefix + 'services/ophthalmology/index.htm','customPageTitle==Our services \x7c Ophthalmology ');
g_navNode_2_44=g_navNode_2.addNode('3448','Oral and maxillofacial surgery',ssUrlPrefix + 'services/oralandmaxillofacialsurgery/index.htm','customPageTitle==Our services \x7c Oral and maxillofacial surgery');
g_navNode_2_45=g_navNode_2.addNode('3449','Orthotics',ssUrlPrefix + 'services/orthotics/index.htm','customPageTitle==Our services \x7c Orthotics ');
g_navNode_2_46=g_navNode_2.addNode('3451','Outpatients',ssUrlPrefix + 'services/outpatients/index.htm','customPageTitle==Our services \x7c Outpatients ');
g_navNode_2_47=g_navNode_2.addNode('3452','Paediatrics',ssUrlPrefix + 'services/paediatrics/index.htm','customPageTitle==Our services \x7c Paediatrics');
g_navNode_2_47_0=g_navNode_2_47.addNode('616','Adolescent medicine',ssUrlPrefix + 'services/paediatrics/adolescentmedicine/index.htm','customPageTitle==Our services \x7c Paediatrics \x7c Adolescent medicine');
g_navNode_2_47_1=g_navNode_2_47.addNode('1180','Ambulatory paediatrics',ssUrlPrefix + 'services/paediatrics/ambulatorypaediatrics/index.htm','customPageTitle==Our services \x7c Paediatrics \x7c Ambulatory');
g_navNode_2_47_2=g_navNode_2_47.addNode('617','Child psychiatry',ssUrlPrefix + 'services/paediatrics/childpsychiatry/index.htm','customPageTitle==Our services \x7c Paediatrics \x7c Child psychiatry');
g_navNode_2_47_3=g_navNode_2_47.addNode('637','Community nursing',ssUrlPrefix + 'services/paediatrics/communitynursing/index.htm','customPageTitle==Our services \x7c Paediatrics \x7c Community nursing');
g_navNode_2_47_4=g_navNode_2_47.addNode('3905','General Paediatrics',ssUrlPrefix + 'services/paediatrics/generalpaediatrics/index.htm','customPageTitle==Our services \x7c General Paediatrics');
g_navNode_2_47_5=g_navNode_2_47.addNode('3912','Neonatology',ssUrlPrefix + 'services/paediatrics/neonatology/index.htm','customPageTitle==Our services \x7c Paediatrics \x7c Neonatology');
g_navNode_2_47_6=g_navNode_2_47.addNode('4490','Paediatric allergy and respiratory medicine',ssUrlPrefix + 'services/paediatrics/paediatricallergyandrespiratorymedicine/index.htm','customPageTitle==Our services \x7c Paediatric allergy and respiratory medicine');
g_navNode_2_47_7=g_navNode_2_47.addNode('633','Paediatric anaesthetics',ssUrlPrefix + 'services/paediatrics/paediatricanaesthetics/index.htm','customPageTitle==Our services \x7c Paediatric anaesthetics');
g_navNode_2_47_8=g_navNode_2_47.addNode('3907','Paediatric audiology',ssUrlPrefix + 'services/paediatrics/paediatricaudiology/index.htm','customPageTitle==Our services \x7c Paediatric audiology');
g_navNode_2_47_9=g_navNode_2_47.addNode('618','Paediatric cardiology',ssUrlPrefix + 'services/paediatrics/paediatriccardiology/index.htm','customPageTitle==Our services \x7c Paediatric cardiology');
g_navNode_2_47_10=g_navNode_2_47.addNode('634','Paediatric dental services',ssUrlPrefix + 'services/paediatrics/dentalservices/index.htm','customPageTitle==Our services \x7c paediatric dental services');
g_navNode_2_47_11=g_navNode_2_47.addNode('619','Paediatric dermatology',ssUrlPrefix + 'services/paediatrics/dermatology/index.htm','customPageTitle==Our services \x7c Paediatric dermatology');
g_navNode_2_47_12=g_navNode_2_47.addNode('4505','Paediatric diabetes homecare team',ssUrlPrefix + 'services/paediatrics/paediatricdiabeteshomecareteam/index.htm','customPageTitle==Our services \x7c Paediatric diabetes homecare team');
g_navNode_2_47_13=g_navNode_2_47.addNode('3906','Paediatric emergency department',ssUrlPrefix + 'services/paediatrics/paediatricemergencydepartment/index.htm','customPageTitle==Our services \x7c Paediatric emergency department');
g_navNode_2_47_14=g_navNode_2_47.addNode('620','Paediatric endocrinology',ssUrlPrefix + 'services/paediatrics/endocrinology/index.htm','customPageTitle==Our services \x7c paediatric endocrinology');
g_navNode_2_47_15=g_navNode_2_47.addNode('3909','Paediatric ENT',ssUrlPrefix + 'services/paediatrics/ent/index.htm','customPageTitle==Our services \x7c Paediatric ENT');
g_navNode_2_47_16=g_navNode_2_47.addNode('621','Paediatric gastroenterology',ssUrlPrefix + 'services/paediatrics/gastroenterology/index.htm','customPageTitle==Our services \x7c Paediatric gastroenterology');
g_navNode_2_47_17=g_navNode_2_47.addNode('622','Paediatric genetics',ssUrlPrefix + 'services/paediatrics/genetics/index.htm','customPageTitle==Our services \x7c Paediatric genetics');
g_navNode_2_47_18=g_navNode_2_47.addNode('636','Paediatric gynaecology',ssUrlPrefix + 'services/paediatrics/paediatricgynaecology/index.htm','customPageTitle==Our services \x7c Paediatric gynaecology');
g_navNode_2_47_19=g_navNode_2_47.addNode('3910','Paediatric haematology and stem cell transplantation',ssUrlPrefix + 'services/paediatrics/haematologyandbonemarrowtransplantation/index.htm','customPageTitle==Our services \x7c Paediatric haematology and stem cell transplantation');
g_navNode_2_47_20=g_navNode_2_47.addNode('623','Paediatric hepatitis family clinic',ssUrlPrefix + 'services/paediatrics/hepatitisservice/index.htm','customPageTitle==Our services \x7c Paediatric hepatitis clinic');
g_navNode_2_47_21=g_navNode_2_47.addNode('624','Paediatric HIV family services',ssUrlPrefix + 'services/paediatrics/hivfamilyservices/index.htm','customPageTitle==Our services \x7c Paediatric HIV family services');
g_navNode_2_47_22=g_navNode_2_47.addNode('625','Paediatric imaging',ssUrlPrefix + 'services/paediatrics/imaging/index.htm','customPageTitle==Our services \x7c Paediatric imaging');
g_navNode_2_47_23=g_navNode_2_47.addNode('626','Paediatric immunology',ssUrlPrefix + 'services/paediatrics/immunology/index.htm','customPageTitle==Our services \x7c Paediatric immunology');
g_navNode_2_47_24=g_navNode_2_47.addNode('3911','Paediatric infectious diseases',ssUrlPrefix + 'services/paediatrics/Infectiousdiseasesandhiv/index.htm','customPageTitle==Our services \x7c Paediatric infectious diseases');
g_navNode_2_47_25=g_navNode_2_47.addNode('3917','Paediatric intensive care \x28PICU\x29',ssUrlPrefix + 'services/paediatrics/paediatricintensivecare/index.htm','customPageTitle==Our services \x7c Paediatric intensive care \x28PICU\x29');
g_navNode_2_47_26=g_navNode_2_47.addNode('3913','Paediatric nephrology',ssUrlPrefix + 'services/paediatrics/nephrology/index.htm','customPageTitle==Our services \x7c Paediatric nephrology');
g_navNode_2_47_27=g_navNode_2_47.addNode('3914','Paediatric neurology',ssUrlPrefix + 'services/paediatrics/neurologyandneurodisability/index.htm','customPageTitle==Our services \x7c Paediatric neurology');
g_navNode_2_47_28=g_navNode_2_47.addNode('638','Paediatric nutrition and dietetics',ssUrlPrefix + 'services/paediatrics/nutritionanddietetics/index.htm','customPageTitle==Our services \x7c Paediatric nutrition and dietetics');
g_navNode_2_47_29=g_navNode_2_47.addNode('639','Paediatric occupational therapy',ssUrlPrefix + 'services/paediatrics/occupationaltherapy/index.htm','customPageTitle==Our services \x7c Paediatric occupational therapy');
g_navNode_2_47_30=g_navNode_2_47.addNode('3916','Paediatric ophthalmology',ssUrlPrefix + 'services/paediatrics/ophthalmology/index.htm','customPageTitle==Our services \x7c Paediatric ophthamology');
g_navNode_2_47_31=g_navNode_2_47.addNode('635','Paediatric orthopaedics',ssUrlPrefix + 'services/paediatrics/orthopaedics/index.htm','customPageTitle==Our services \x7c Paediatric orthopaedics ');
g_navNode_2_47_32=g_navNode_2_47.addNode('3915','Paediatric outpatients',ssUrlPrefix + 'services/paediatrics/paediatricoutpatients/index.htm','customPageTitle==Our services \x7c Paediatric outpatients ');
g_navNode_2_47_33=g_navNode_2_47.addNode('627','Paediatric palliative care',ssUrlPrefix + 'services/paediatrics/palliativecare/index.htm','customPageTitle==Our services \x7c Paediatric palliative care');
g_navNode_2_47_34=g_navNode_2_47.addNode('628','Paediatric pharmacy',ssUrlPrefix + 'services/paediatrics/pharmacy/index.htm','customPageTitle==Our services \x7c Paediatric pharmacy');
g_navNode_2_47_35=g_navNode_2_47.addNode('1185','Paediatric physiotherapy',ssUrlPrefix + 'services/paediatrics/physiotherapy/index.htm','customPageTitle==Our services \x7c Paediatric physiotherapy');
g_navNode_2_47_36=g_navNode_2_47.addNode('3918','Paediatric research unit',ssUrlPrefix + 'services/paediatrics/paediatricresearchunit/index.htm','customPageTitle==Our services \x7c Paediatric research unit');
g_navNode_2_47_37=g_navNode_2_47.addNode('629','Paediatric rheumatology',ssUrlPrefix + 'services/paediatrics/rheumatology/index.htm','customPageTitle==Our services \x7c Paediatric rheumatology');
g_navNode_2_47_38=g_navNode_2_47.addNode('3919','Paediatric short stay unit \x28PSSU\x29',ssUrlPrefix + 'services/paediatrics/paediatricshortstayunit/index.htm','customPageTitle==Our services \x7c Paediatric short stay unit \x28PSSU\x29');
g_navNode_2_47_39=g_navNode_2_47.addNode('641','Paediatric speech and language therapy',ssUrlPrefix + 'services/paediatrics/speechandlanguagetherapy/index.htm','customPageTitle==Our services \x7c Paediatric speech and language therapy');
g_navNode_2_47_40=g_navNode_2_47.addNode('3921','Paediatric surgery and urology',ssUrlPrefix + 'services/paediatrics/surgerypaediatrics/index.htm','customPageTitle==Our services \x7c Paediatric surgery and urology');
g_navNode_2_47_41=g_navNode_2_47.addNode('630','Paediatric syncope diagnostic centre',ssUrlPrefix + 'services/paediatrics/syncopediagnosticcentre/index.htm','customPageTitle==Our services \x7c Paediatric syncope diagnostic centre');
g_navNode_2_47_42=g_navNode_2_47.addNode('631','Paediatric transfusion service',ssUrlPrefix + 'services/paediatrics/transfusionservice/index.htm','customPageTitle==Our services \x7c Paediatric transfusion service');
g_navNode_2_47_43=g_navNode_2_47.addNode('632','Paediatric tuberculosis',ssUrlPrefix + 'services/paediatrics/tuberculosis/index.htm','customPageTitle==Our services \x7c Paediatric tuberulosis');
g_navNode_2_47_44=g_navNode_2_47.addNode('1181','Safeguarding and child protection',ssUrlPrefix + 'services/paediatrics/safeguardingandchildprotection/index.htm','customPageTitle==Our services \x7c Paediatric safeguarding and child protection');
g_navNode_2_48=g_navNode_2.addNode('3453','Pain management service',ssUrlPrefix + 'services/painmanagementservice/index.htm','customPageTitle==Our services \x7c Pain management service ');
g_navNode_2_49=g_navNode_2.addNode('4032','Palliative care service',ssUrlPrefix + 'services/palliativecareservice/index.htm','customPageTitle==Our services \x7c Palliative care service ');
g_navNode_2_50=g_navNode_2.addNode('3454','Pathology',ssUrlPrefix + 'services/pathology/index.htm','customPageTitle==Our services \x7c Pathology ');
g_navNode_2_51=g_navNode_2.addNode('3455','Pharmacy',ssUrlPrefix + 'services/pharmacy/index.htm','customPageTitle==Our services \x7c Pharmacy ');
g_navNode_2_52=g_navNode_2.addNode('3758','Physiotherapy',ssUrlPrefix + 'services/physiotherapy/index.htm','customPageTitle==Our services \x7c Physiotherapy');
g_navNode_2_53=g_navNode_2.addNode('3456','Plastic surgery',ssUrlPrefix + 'services/plasticsurgery/index.htm','customPageTitle==Our services \x7c Plastic surgery');
g_navNode_2_54=g_navNode_2.addNode('4437','Podiatry/diabetic foot clinic',ssUrlPrefix + 'services/podiatryanddiabeticfootclinic/index.htm','customPageTitle==Our services \x7c Podiatry/diabetic foot clinic ');
g_navNode_2_55=g_navNode_2.addNode('7697','Podiatric surgery',ssUrlPrefix + 'services/podiatric-surgery/index.htm');
g_navNode_2_56=g_navNode_2.addNode('3457','Private healthcare',ssUrlPrefix + 'services/privatehealthcare/index.htm','customPageTitle==Our services \x7c Private healthcare ');
g_navNode_2_57=g_navNode_2.addNode('3458','Prosthetics',ssUrlPrefix + 'services/prosthetics/index.htm','customPageTitle==Our services \x7c Prosthetics');
g_navNode_2_58=g_navNode_2.addNode('3459','Rapid assessment unit',ssUrlPrefix + 'services/rapidassessmentunit/index.htm','customPageTitle==Our services \x7c Rapid assessment unit');
g_navNode_2_59=g_navNode_2.addNode('4486','Renal and transplant services',ssUrlPrefix + 'services/renalandtransplantservices/index.htm','Synonyms==kidney','customPageTitle==Our services \x7c Renal and transplant services ');
g_navNode_2_60=g_navNode_2.addNode('6238','Reproductive endocrinology',ssUrlPrefix + 'services/reproductive-endocrinology/index.htm','customPageTitle==Our services \x7c Reproductive endocrinology ');
g_navNode_2_61=g_navNode_2.addNode('3460','Rheumatology',ssUrlPrefix + 'services/rheumatology/index.htm','customPageTitle==Our services \x7c Rheumatology ');
g_navNode_2_62=g_navNode_2.addNode('3433','Sexual health and HIV services',ssUrlPrefix + 'services/sexual-health-hiv-services/index.htm','customPageTitle==Our services \x7c Sexual health and HIV services');
g_navNode_2_63=g_navNode_2.addNode('3461','Sleep services',ssUrlPrefix + 'services/sleepservices/index.htm','customPageTitle==Our services \x7c Sleep services ');
g_navNode_2_64=g_navNode_2.addNode('3759','Speech and language therapy',ssUrlPrefix + 'services/speechandlanguagetherapy/index.htm','customPageTitle==Our services \x7c Speech and language therapy ');
g_navNode_2_65=g_navNode_2.addNode('3462','Stroke services',ssUrlPrefix + 'services/strokeservices/index.htm','customPageTitle==Our services \x7c Stroke services ');
g_navNode_2_67=g_navNode_2.addNode('3464','Trauma and orthopaedics',ssUrlPrefix + 'services/traumaandorthopaedics/index.htm','customPageTitle==Our services \x7c Trauma and orthopaedics ');
g_navNode_2_68=g_navNode_2.addNode('3832','Upper gastrointestinal surgery',ssUrlPrefix + 'services/uppergastrointestinalsurgery/index.htm','customPageTitle==Our services \x7c Upper gastrointestinal surgery');
g_navNode_2_69=g_navNode_2.addNode('6230','Urgent care centre',ssUrlPrefix + 'services/urgent-care-centre/index.htm','customPageTitle==Our services \x7c Urgent care centre');
g_navNode_2_70=g_navNode_2.addNode('3466','Urology',ssUrlPrefix + 'services/urology/index.htm','customPageTitle==Our services \x7c Urology ');
g_navNode_2_71=g_navNode_2.addNode('3467','Vascular surgery',ssUrlPrefix + 'services/vascularsurgery/index.htm','customPageTitle==Our services \x7c Vascular surgery ');
g_navNode_3=g_navNode_Root.addNode('210','GPs',ssUrlPrefix + 'gps/index.htm','Navigation==Top','customPageTitle==GPs');
g_navNode_3_0=g_navNode_3.addNode('3696','Our services',ssUrlPrefix + 'gps/ourservices/index.htm','customPageTitle==Our services \x7c GPs ');
g_navNode_3_0_0=g_navNode_3_0.addNode('7929','Audiology and hearing services',ssUrlPrefix + 'gps/ourservices/audiology/index.htm');
g_navNode_3_0_1=g_navNode_3_0.addNode('3787','A\x26E',ssUrlPrefix + 'gps/ourservices/accidentandemergency/index.htm','customPageTitle==GPs \x7c A\x26E ');
g_navNode_3_0_2=g_navNode_3_0.addNode('3697','Allergy',ssUrlPrefix + 'gps/ourservices/allergy/index.htm','customPageTitle==GPs \x7c Allergy ');
g_navNode_3_0_3=g_navNode_3_0.addNode('4425','Anaesthetics',ssUrlPrefix + 'gps/ourservices/anaesthetics/index.htm','customPageTitle==GPs \x7c Anaesthetics ');
g_navNode_3_0_4=g_navNode_3_0.addNode('7925','Audiology/ENT',ssUrlPrefix + 'gps/ourservices/audiology-ENT/index.htm');
g_navNode_3_0_5=g_navNode_3_0.addNode('3786','Bariatric services and surgery',ssUrlPrefix + 'gps/ourservices/bariatricservices/index.htm','customPageTitle==GPs \x7c Bariatric services and surgery ');
g_navNode_3_0_6=g_navNode_3_0.addNode('4429','Breast care and surgery services',ssUrlPrefix + 'gps/ourservices/breastcareandsurgeryservices/index.htm','customPageTitle==GPs \x7c Breast care and surgery services ');
g_navNode_3_0_7=g_navNode_3_0.addNode('3852','Breast screening services',ssUrlPrefix + 'gps/ourservices/breastscreeningservices/index.htm','customPageTitle==GPs \x7c Breast screening services ');
g_navNode_3_0_8=g_navNode_3_0.addNode('3718','Cancer services',ssUrlPrefix + 'gps/ourservices/cancerservices/index.htm','customPageTitle==GPs \x7c Cancer services ');
g_navNode_3_0_9=g_navNode_3_0.addNode('3700','Cardiology',ssUrlPrefix + 'gps/ourservices/cardiology/index.htm','customPageTitle==GPs \x7c Cardiology ');
g_navNode_3_0_10=g_navNode_3_0.addNode('3824','Cardiothoracic surgery',ssUrlPrefix + 'gps/ourservices/cardiothoracicsurgery/index.htm','customPageTitle==GPs \x7c Cardiothoracic surgery ');
g_navNode_3_0_11=g_navNode_3_0.addNode('3702','Chest Medicine',ssUrlPrefix + 'gps/ourservices/chestmedicine/index.htm','customPageTitle==GPs \x7c Chest medicine ');
g_navNode_3_0_12=g_navNode_3_0.addNode('3703','Clinical haematology',ssUrlPrefix + 'gps/ourservices/clinicalhaematology/index.htm','customPageTitle==GPs \x7c Clinical haematology ');
g_navNode_3_0_13=g_navNode_3_0.addNode('3853','Colorectal surgery',ssUrlPrefix + 'gps/ourservices/colorectalsurgery/index.htm','customPageTitle==GPs \x7c Colorectal surgery ');
g_navNode_3_0_14=g_navNode_3_0.addNode('3704','Critical care',ssUrlPrefix + 'gps/ourservices/criticalcare/index.htm','customPageTitle==GPs \x7c Critical care ');
g_navNode_3_0_15=g_navNode_3_0.addNode('3846','Dermatology',ssUrlPrefix + 'gps/ourservices/dermatology/index.htm','customPageTitle==GPs \x7c Dermatology ');
g_navNode_3_0_16=g_navNode_3_0.addNode('3788','Elderly medicine',ssUrlPrefix + 'gps/ourservices/elderlycare/index.htm','customPageTitle==GPs \x7c Elderly medicine ');
g_navNode_3_0_17=g_navNode_3_0.addNode('3801','Emergency services',ssUrlPrefix + 'gps/ourservices/emergencyservices/index.htm','customPageTitle==GPs \x7c Emergency services ');
g_navNode_3_0_18=g_navNode_3_0.addNode('3719','Endocrine surgery',ssUrlPrefix + 'gps/ourservices/endocrinesurgery/index.htm','customPageTitle==GPs \x7c Endocrine surgery ');
g_navNode_3_0_19=g_navNode_3_0.addNode('3851','Endocrinology/diabetic medicine',ssUrlPrefix + 'gps/ourservices/endocrinology/index.htm','customPageTitle==GPs \x7c Endocrinology/diabetic medicine');
g_navNode_3_0_20=g_navNode_3_0.addNode('3698','ENT/audiology',ssUrlPrefix + 'gps/ourservices/entaudiology/index.htm','customPageTitle==GPs \x7c ENT/audiology ');
g_navNode_3_0_21=g_navNode_3_0.addNode('3705','Gastroenterology',ssUrlPrefix + 'gps/ourservices/gastroenterology/index.htm','customPageTitle==GPs \x7c Gastroenterology ');
g_navNode_3_0_22=g_navNode_3_0.addNode('3706','Gender surgery',ssUrlPrefix + 'gps/ourservices/gendersurgery/index.htm','customPageTitle==GPs \x7c Gender surgery ');
g_navNode_3_0_23=g_navNode_3_0.addNode('3848','General surgery',ssUrlPrefix + 'gps/ourservices/generalsurgery/index.htm','customPageTitle== GPs \x7c General surgery');
g_navNode_3_0_24=g_navNode_3_0.addNode('3721','Gynaecology',ssUrlPrefix + 'gps/ourservices/gynaecology/index.htm','customPageTitle==GPs \x7c Gynaecology ');
g_navNode_3_0_25=g_navNode_3_0.addNode('3708','Hepatology',ssUrlPrefix + 'gps/ourservices/hepatology/index.htm','customPageTitle==GPs \x7c Hepatology ');
g_navNode_3_0_26=g_navNode_3_0.addNode('3891','HTLV service',ssUrlPrefix + 'gps/ourservices/htlvservice/index.htm','customPageTitle==GPs \x7c HTLV service ');
g_navNode_3_0_27=g_navNode_3_0.addNode('3720','Imaging',ssUrlPrefix + 'gps/ourservices/imaging/index.htm','customPageTitle==GPs \x7c Imaging ');
g_navNode_3_0_28=g_navNode_3_0.addNode('3709','Infectious diseases',ssUrlPrefix + 'gps/ourservices/infectiousdiseases/index.htm','customPageTitle==GPs \x7c Infectious diseases');
g_navNode_3_0_29=g_navNode_3_0.addNode('3710','Infertility services',ssUrlPrefix + 'gps/ourservices/infertilityservices/index.htm','customPageTitle==GPs \x7c Infertility services ');
g_navNode_3_0_30=g_navNode_3_0.addNode('3826','Lipidology',ssUrlPrefix + 'gps/ourservices/lipidology/index.htm','customPageTitle==GPs \x7c Lipidology ');
g_navNode_3_0_31=g_navNode_3_0.addNode('3722','Liver, pancreas and biliary surgery',ssUrlPrefix + 'gps/ourservices/liverpancreasandbiliarysurgery/index.htm','customPageTitle==GPs \x7c Liver pancreas and biliary surgery ');
g_navNode_3_0_32=g_navNode_3_0.addNode('3803','Maternity and obstetrics',ssUrlPrefix + 'gps/ourservices/maternityandobstetrics/index.htm','customPageTitle==GPs \x7c Maternity and obstetrics ');
g_navNode_3_0_33=g_navNode_3_0.addNode('3847','Nephrology',ssUrlPrefix + 'gps/ourservices/nephrology/index.htm','customPageTitle==GPs \x7c Nephrology');
g_navNode_3_0_34=g_navNode_3_0.addNode('3804','Neurology',ssUrlPrefix + 'gps/ourservices/neurology/index.htm','customPageTitle==GPs \x7c Neurology ');
g_navNode_3_0_35=g_navNode_3_0.addNode('3805','Neurosurgery',ssUrlPrefix + 'gps/ourservices/neurosurgery/index.htm','customPageTitle==GPs \x7c Neurosurgery ');
g_navNode_3_0_36=g_navNode_3_0.addNode('3754','Nutrition and dietetics',ssUrlPrefix + 'gps/ourservices/nutritionanddietetics/index.htm','customPageTitle==GPs \x7c Nutrition and dietetics');
g_navNode_3_0_37=g_navNode_3_0.addNode('3711','Occupational health',ssUrlPrefix + 'gps/ourservices/occupationalhealth/index.htm','customPageTitle==GPs Occupational health ');
g_navNode_3_0_38=g_navNode_3_0.addNode('3760','Occupational therapy',ssUrlPrefix + 'gps/ourservices/occupationaltherapy/index.htm','customPageTitle==GPs \x7c Occupational therapy');
g_navNode_3_0_39=g_navNode_3_0.addNode('3714','Ophthalmology',ssUrlPrefix + 'gps/ourservices/ophthalmology/index.htm','customPageTitle==GPs \x7c Ophthalmology');
g_navNode_3_0_40=g_navNode_3_0.addNode('3727','Oral and maxillofacial surgery',ssUrlPrefix + 'gps/ourservices/oralandmaxillofacialsurgery/index.htm','customPageTitle==GPs \x7c Oral and maxillofacial surgery');
g_navNode_3_0_41=g_navNode_3_0.addNode('3827','Orthotics',ssUrlPrefix + 'gps/ourservices/orthotics/index.htm','customPageTitle==GPs \x7c Orthotics ');
g_navNode_3_0_42=g_navNode_3_0.addNode('3743','Outpatients',ssUrlPrefix + 'gps/ourservices/outpatients/index.htm','customPageTitle==GPs \x7c Outpatients ');
g_navNode_3_0_43=g_navNode_3_0.addNode('3812','Paediatrics',ssUrlPrefix + 'gps/ourservices/paediatrics/index.htm','customPageTitle==GPs \x7c Paediatrics ');
g_navNode_3_0_44=g_navNode_3_0.addNode('3744','Pain management service',ssUrlPrefix + 'gps/ourservices/painmanagementservice/index.htm','customPageTitle==GPs \x7c Pain management service ');
g_navNode_3_0_45=g_navNode_3_0.addNode('6229','Palliative care service',ssUrlPrefix + 'gps/ourservices/palliative-care-service/index.htm','customPageTitle==GPs \x7c Palliative care service');
g_navNode_3_0_46=g_navNode_3_0.addNode('6276','Pathology',ssUrlPrefix + 'gps/ourservices/pathology/index.htm','customPageTitle==GPs \x7c Pathology ');
g_navNode_3_0_47=g_navNode_3_0.addNode('3761','Physiotherapy',ssUrlPrefix + 'gps/ourservices/physiotherapy/index.htm','customPageTitle==GPs \x7c Physiotherapy ');
g_navNode_3_0_48=g_navNode_3_0.addNode('3831','Plastic surgery',ssUrlPrefix + 'gps/ourservices/plasticsurgery/index.htm','customPageTitle==GPs \x7c Plastic surgery ');
g_navNode_3_0_49=g_navNode_3_0.addNode('4438','Podiatry/diabetic foot clinic',ssUrlPrefix + 'gps/ourservices/podiatryanddiabeticfootclinic/index.htm','customPageTitle==GPs \x7c Podiatry/diabetic foot clinic');
g_navNode_3_0_50=g_navNode_3_0.addNode('7696','Podiatric surgery',ssUrlPrefix + 'gps/ourservices/podiatric-surgery/index.htm');
g_navNode_3_0_51=g_navNode_3_0.addNode('3749','Private healthcare',ssUrlPrefix + 'gps/ourservices/privatehealthcare/index.htm','customPageTitle==GPs \x7c Private healthcare ');
g_navNode_3_0_52=g_navNode_3_0.addNode('3850','Prosthetics',ssUrlPrefix + 'gps/ourservices/prosthetics/index.htm','customPageTitle==GPs \x7c Prosthetics ');
g_navNode_3_0_53=g_navNode_3_0.addNode('3751','Rapid assessment unit',ssUrlPrefix + 'gps/ourservices/rapidassessmentunit/index.htm','customPageTitle==GPs \x7c Rapid assessment unit');
g_navNode_3_0_54=g_navNode_3_0.addNode('4485','Renal and transplant services',ssUrlPrefix + 'gps/ourservices/renalandtransplantservices/index.htm','customPageTitle==GPs \x7c Renal and transplant services ');
g_navNode_3_0_55=g_navNode_3_0.addNode('6237','Reproductive endocrinology',ssUrlPrefix + 'gps/ourservices/reproductive-endocrinology/index.htm','customPageTitle==GPs \x7c Reproductive endocrinology ');
g_navNode_3_0_56=g_navNode_3_0.addNode('3715','Rheumatology',ssUrlPrefix + 'gps/ourservices/rheumatology/index.htm','customPageTitle==GPs \x7c Rheumatology ');
g_navNode_3_0_57=g_navNode_3_0.addNode('3707','Sexual health and HIV services ',ssUrlPrefix + 'gps/ourservices/sexual-health-hiv-services/index.htm','customPageTitle==GPs \x7c Sexual health and HIV services');
g_navNode_3_0_58=g_navNode_3_0.addNode('3815','Sleep Services',ssUrlPrefix + 'gps/ourservices/sleepservices/index.htm','customPageTitle==GPs \x7c Sleep services ');
g_navNode_3_0_59=g_navNode_3_0.addNode('3762','Speech and language therapy',ssUrlPrefix + 'gps/ourservices/speechandlanguagetherapy/index.htm','customPageTitle==GPs \x7c Speech and language therapy ');
g_navNode_3_0_60=g_navNode_3_0.addNode('3872','Stroke services',ssUrlPrefix + 'gps/ourservices/strokeservices/index.htm','customPageTitle==GPs \x7c Stroke services ');
g_navNode_3_0_61=g_navNode_3_0.addNode('3829','Trauma and orthopaedics',ssUrlPrefix + 'gps/ourservices/traumaandorthopaedics/index.htm','customPageTitle==GPs \x7c Trauma and orthopaedics ');
g_navNode_3_0_62=g_navNode_3_0.addNode('3833','Upper GI surgery',ssUrlPrefix + 'gps/ourservices/uppergisurgery/index.htm','customPageTitle==GPs \x7c Upper GI surgery ');
g_navNode_3_0_63=g_navNode_3_0.addNode('3717','Urology',ssUrlPrefix + 'gps/ourservices/urology/index.htm','customPageTitle==GPs \x7c Urology ');
g_navNode_3_0_64=g_navNode_3_0.addNode('3849','Vascular surgery',ssUrlPrefix + 'gps/ourservices/vascularsurgery/index.htm','customPageTitle==GPs \x7c Vascular surgery ');
g_navNode_3_1=g_navNode_3.addNode('234','Diagnostic services',ssUrlPrefix + 'gps/pathologyservices/index.htm','customPageTitle==GPs \x7c Diagnostic services ');
g_navNode_3_1_0=g_navNode_3_1.addNode('3375','Imaging ',ssUrlPrefix + 'gps/pathologyservices/imaging/index.htm','customPageTitle==GPs \x7c Diagnostic services \x7c Imaging');
g_navNode_3_1_1=g_navNode_3_1.addNode('3376','Pathology',ssUrlPrefix + 'gps/pathologyservices/pathology/index.htm','customPageTitle==GPs \x7c Diagnostic services \x7c Pathology');
g_navNode_3_2=g_navNode_3.addNode('3838','Emergency services',ssUrlPrefix + 'gps/emergencyservices/index.htm','customPageTitle==GPs \x7c Emergency services');
g_navNode_3_2_0=g_navNode_3_2.addNode('3840','A\x26E',ssUrlPrefix + 'gps/emergencyservices/ae/index.htm','customPageTitle==GPs \x7c Emergency services \x7c A\x26E');
g_navNode_3_2_1=g_navNode_3_2.addNode('3841','Emergency',ssUrlPrefix + 'gps/emergencyservices/emergency/index.htm','customPageTitle==GPs \x7c Emergency services \x7c Emergerncy');
g_navNode_3_2_2=g_navNode_3_2.addNode('3842','Ophthalmology',ssUrlPrefix + 'gps/emergencyservices/ophthalmology/index.htm','customPageTitle==GPs \x7c Emergency services \x7c Ophthamology');
g_navNode_3_2_3=g_navNode_3_2.addNode('3843','Rapid assessment unit',ssUrlPrefix + 'gps/emergencyservices/rapidassessmentunit/index.htm','customPageTitle==GPs \x7c Emergency services \x7c Rapid assessment unit');
g_navNode_3_2_4=g_navNode_3_2.addNode('3844','Stroke services',ssUrlPrefix + 'gps/emergencyservices/strokeservices/index.htm','customPageTitle==GPs \x7c Emergency services \x7c Stroke services');
g_navNode_3_3=g_navNode_3.addNode('232','Choose and book',ssUrlPrefix + 'gps/chooseandbook/index.htm','customPageTitle==GPs \x7c Choose and book ');
g_navNode_3_4=g_navNode_3.addNode('233','Education events',ssUrlPrefix + 'gps/courses/index.htm','customPageTitle==GPs \x7c Training and courses');
g_navNode_3_4_4=g_navNode_3_4.addNode('4970','March 2012',ssUrlPrefix + 'gps/courses/march-2012/index.htm','customPageTitle==GPs \x7c Training and courses');
g_navNode_3_5=g_navNode_3.addNode('3377','Patient transport',ssUrlPrefix + 'gps/Patienttransport/index.htm','customPageTitle==GPs \x7c Patient transport ');
g_navNode_3_6=g_navNode_3.addNode('4063','GP Service bulletins and news',ssUrlPrefix + 'gps/good_practice/index.htm','customPageTitle==GPs \x7c GP Service Bulletins and news');
g_navNode_3_6_0=g_navNode_3_6.addNode('7921','Good Practice newsletter',ssUrlPrefix + 'gps/good_practice/good-practice-newsletter/index.htm');
g_navNode_3_6_1=g_navNode_3_6.addNode('235','Newsletter archive',ssUrlPrefix + 'gps/good_practice/newsletter_archive/index.htm','customPageTitle==GPs \x7c Good Practice newsletter');
g_navNode_3_7=g_navNode_3.addNode('3378','PALS information ',ssUrlPrefix + 'gps/pals/index.htm','customPageTitle==GPs \x7c PALS information ');
g_navNode_3_8=g_navNode_3.addNode('3650','Referral forms',ssUrlPrefix + 'gps/referralletters/index.htm','customPageTitle==GPs \x7c Referral forms ');
g_navNode_3_9=g_navNode_3.addNode('3379','Resources',ssUrlPrefix + 'gps/resources/index.htm','customPageTitle==GPs \x7c Resources ');
g_navNode_3_10=g_navNode_3.addNode('4051','Private healthcare',ssUrlPrefix + 'gps/privatehealthcare/index.htm','customPageTitle==GPs \x7c Private healthcare ');
g_navNode_3_11=g_navNode_3.addNode('7744','Gp survey',ssUrlPrefix + 'gps/gpsurvey/index.htm');
g_navNode_3_14=g_navNode_3.addNode('7971','GP webchat',ssUrlPrefix + 'gps/gp-webchat/index.htm');
g_navNode_6=g_navNode_Root.addNode('211','Research',ssUrlPrefix + 'research/index.htm','Navigation==Top','customPageTitle==Research ');
g_navNode_7=g_navNode_Root.addNode('213','Media',ssUrlPrefix + 'mediacentre/index.htm','Navigation==Top','customPageTitle==Media');
g_navNode_7_0=g_navNode_7.addNode('243','Media enquiries',ssUrlPrefix + 'mediacentre/enquiries/index.htm','customPageTitle==Media enquiries');
g_navNode_7_1=g_navNode_7.addNode('244','Press releases',ssUrlPrefix + 'mediacentre/pressreleases/index.htm','customPageTitle== Media \x7c Press releases','xmlQueryText==xSubType \x3cmatches\x3e \x60NewsItem\x60  \x3cAND\x3e  xNewsItemCategory \x3cmatches\x3e \x60General\x60  \x3cAND\x3e  dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xKeyDate \x3e\x3d \x6001/10/2007\x60');
g_navNode_7_3=g_navNode_7.addNode('245','Image library',ssUrlPrefix + 'mediacentre/imagelibrary/index.htm','customPageTitle==Media \x7c Image library ');
g_navNode_7_4=g_navNode_7.addNode('273','Video library',ssUrlPrefix + 'mediacentre/videolibrary/index.htm','customPageTitle==Media \x7c Video library');
g_navNode_7_5=g_navNode_7.addNode('3750','360\x26deg\x3b',ssUrlPrefix + 'mediacentre/360/index.htm','customPageTitle==Media \x7c 360 degrees newspaper');
g_navNode_7_6=g_navNode_7.addNode('7349','Media round-up ',ssUrlPrefix + 'mediacentre/media-round-up/index.htm');
g_navNode_7_6_0=g_navNode_7_6.addNode('8098','December 2011',ssUrlPrefix + 'mediacentre/media-round-up/december-2011/index.htm');
g_navNode_7_6_1=g_navNode_7_6.addNode('7952','November 2011',ssUrlPrefix + 'mediacentre/media-round-up/november-2011/index.htm');
g_navNode_7_6_2=g_navNode_7_6.addNode('7912','October 2011',ssUrlPrefix + 'mediacentre/media-round-up/october-2011/index.htm');
g_navNode_7_6_3=g_navNode_7_6.addNode('7779','September 2011',ssUrlPrefix + 'mediacentre/media-round-up/September-2011/index.htm');
g_navNode_7_6_4=g_navNode_7_6.addNode('7693','August 2011',ssUrlPrefix + 'mediacentre/media-round-up/august-2011/index.htm');
g_navNode_7_6_5=g_navNode_7_6.addNode('7542','July 2011',ssUrlPrefix + 'mediacentre/media-round-up/July-2011/index.htm');
g_navNode_7_6_6=g_navNode_7_6.addNode('7461','June 2011',ssUrlPrefix + 'mediacentre/media-round-up/June-2011/index.htm');
g_navNode_7_6_7=g_navNode_7_6.addNode('7389','April-May-2011',ssUrlPrefix + 'mediacentre/media-round-up/apr-may-2011/index.htm');
g_navNode_7_6_8=g_navNode_7_6.addNode('7388','February-March-2011',ssUrlPrefix + 'mediacentre/media-round-up/feb-mar-2011/index.htm');
g_navNode_7_6_9=g_navNode_7_6.addNode('7353','December 2010 - January 2011 ',ssUrlPrefix + 'mediacentre/media-round-up/dec-2010-jan-2011/index.htm');
g_navNode_7_6_10=g_navNode_7_6.addNode('7352','November-December 2010 ',ssUrlPrefix + 'mediacentre/media-round-up/nov-dec-2010/index.htm');
g_navNode_7_6_11=g_navNode_7_6.addNode('7351','October-November 2010 ',ssUrlPrefix + 'mediacentre/media-round-up/oct-nov-2010/index.htm');
g_navNode_7_6_12=g_navNode_7_6.addNode('7350','September-October 2010   ',ssUrlPrefix + 'mediacentre/media-round-up/sept-oct-2010/index.htm');
g_navNode_7_7=g_navNode_7.addNode('246','Find an expert',ssUrlPrefix + 'mediacentre/findanexpert/index.htm','customPageTitle==Media \x7c Find an expert ');
g_navNode_7_8=g_navNode_7.addNode('247','Filming',ssUrlPrefix + 'mediacentre/filming/index.htm','customPageTitle==Media \x7c Filming ');
g_navNode_7_9=g_navNode_7.addNode('248','Confidentiality',ssUrlPrefix + 'mediacentre/confidentiality/index.htm','customPageTitle==Media \x7c Confidentiality');
g_navNode_7_12=g_navNode_7.addNode('251','Contact the team',ssUrlPrefix + 'mediacentre/contact/index.htm','customPageTitle==Media \x7c Contact the team');
g_navNode_8=g_navNode_Root.addNode('214','Working with us',ssUrlPrefix + 'workwithus/index.htm','Navigation==Top','customPageTitle==Working with us');
g_navNode_8_0=g_navNode_8.addNode('252','Jobs and recruitment',ssUrlPrefix + 'workwithus/recruitment/index.htm','customPageTitle==Jobs and recruitment \x7c Working with us');
g_navNode_8_0_0=g_navNode_8_0.addNode('4044','Current vacancies',ssUrlPrefix + 'workwithus/recruitment/nhsjobs/index.htm');
g_navNode_8_0_1=g_navNode_8_0.addNode('3830','Staff profiles',ssUrlPrefix + 'workwithus/recruitment/staffprofiles/index.htm');
g_navNode_8_1=g_navNode_8.addNode('3845','Postgraduate medical education ',ssUrlPrefix + 'workwithus/pgme/index.htm','customPageTitle==Postgraduate medical education \x7c Working with us');
g_navNode_8_1_0=g_navNode_8_1.addNode('42','Accommodation',ssUrlPrefix + 'workwithus/pgme/accommodation/index.htm');
g_navNode_8_1_1=g_navNode_8_1.addNode('7969','Foundation doctors teaching and training',ssUrlPrefix + 'workwithus/pgme/teaching-training/index.htm');
g_navNode_8_2=g_navNode_8.addNode('253','Learning for Work training and recruitment programme',ssUrlPrefix + 'workwithus/learningforwork/index.htm','customPageTitle==Learning for work training and recruitment programme \x7c Working with us');
g_navNode_8_3=g_navNode_8.addNode('254','Why work here',ssUrlPrefix + 'workwithus/whyworkhere/index.htm','customPageTitle==Why work here \x7c Working with us');
g_navNode_8_4=g_navNode_8.addNode('255','Staff benefits',ssUrlPrefix + 'workwithus/benefits/index.htm','customPageTitle==Staff benefits \x7c Working with us');
g_navNode_8_4_0=g_navNode_8_4.addNode('3647','Accomodation to Discounts',ssUrlPrefix + 'workwithus/benefits/atod/index.htm');
g_navNode_8_4_1=g_navNode_8_4.addNode('3648','Education to Pensions ',ssUrlPrefix + 'workwithus/benefits/etop/index.htm');
g_navNode_8_4_2=g_navNode_8_4.addNode('3649','Restaurants to Travel ',ssUrlPrefix + 'workwithus/benefits/rtoz/index.htm');
g_navNode_8_5=g_navNode_8.addNode('980','Staff awards',ssUrlPrefix + 'workwithus/staffawards/index.htm','customPageTitle==Staff awards \x7c Working with us');
g_navNode_8_6=g_navNode_8.addNode('256','London living',ssUrlPrefix + 'workwithus/londonliving/index.htm','customPageTitle==London living \x7c Working with us');
g_navNode_8_7=g_navNode_8.addNode('257','NHS payscales',ssUrlPrefix + 'workwithus/payscales/index.htm','customPageTitle==NHS payscales \x7c Working with us');
g_navNode_8_8=g_navNode_8.addNode('258','Volunteering',ssUrlPrefix + 'workwithus/volunteering/index.htm','customPageTitle==Volunteering \x7c Working with us');
g_navNode_8_9=g_navNode_8.addNode('5936','Work experience',ssUrlPrefix + 'workwithus/work-experience/index.htm','customPageTitle==Work experience \x7c Working with us');
g_navNode_8_9_0=g_navNode_8_9.addNode('6747','Pre-medical programme',ssUrlPrefix + 'workwithus/work-experience/pre-medical-program/index.htm');
g_navNode_8_9_1=g_navNode_8_9.addNode('6748','General/admin programme',ssUrlPrefix + 'workwithus/work-experience/general-admin-program/index.htm');
g_navNode_8_10=g_navNode_8.addNode('259','Training and development',ssUrlPrefix + 'workwithus/training/index.htm','customPageTitle==Training and development \x7c Working with us');
g_navNode_8_11=g_navNode_8.addNode('7819','Apprenticeships',ssUrlPrefix + 'workwithus/apprenticeships/index.htm');
g_navNode_8_12=g_navNode_8.addNode('6193','Support after you retire',ssUrlPrefix + 'workwithus/retirement-fellowship/index.htm','customPageTitle==Support after you retire \x7c Working with us');
g_navNode_9=g_navNode_Root.addNode('260','About us',ssUrlPrefix + 'aboutus/index.htm','Navigation==Top','customPageTitle==About us');
g_navNode_9_0=g_navNode_9.addNode('261','Key people',ssUrlPrefix + 'aboutus/whoweare/index.htm','customPageTitle==Key people \x7c About us');
g_navNode_9_0_0=g_navNode_9_0.addNode('3816','Board of directors',ssUrlPrefix + 'aboutus/whoweare/board/index.htm');
g_navNode_9_0_1=g_navNode_9_0.addNode('3794','Executive team',ssUrlPrefix + 'aboutus/whoweare/executive/index.htm');
g_navNode_9_0_2=g_navNode_9_0.addNode('3796','Clinical programme group directors',ssUrlPrefix + 'aboutus/whoweare/cpgdirectors/index.htm');
g_navNode_9_1=g_navNode_9.addNode('262','Our hospitals',ssUrlPrefix + 'aboutus/ourhospitals/index.htm','customPageTitle==Our hospitals \x7c About us');
g_navNode_9_1_0=g_navNode_9_1.addNode('4393','History of our hospitals',ssUrlPrefix + 'aboutus/ourhospitals/history/index.htm');
g_navNode_9_1_0_0=g_navNode_9_1_0.addNode('4399','Photo archive',ssUrlPrefix + 'aboutus/ourhospitals/history/1950sphotogallery/index.htm');
g_navNode_9_2=g_navNode_9.addNode('263','Our organisation',ssUrlPrefix + 'aboutus/ourorganisation/index.htm','customPageTitle==Our organisation \x7c About us');
g_navNode_9_2_0=g_navNode_9_2.addNode('3797','Board meetings',ssUrlPrefix + 'aboutus/ourorganisation/boardmeetings/index.htm');
g_navNode_9_2_1=g_navNode_9_2.addNode('1362','Clinical ethics committee',ssUrlPrefix + 'aboutus/ourorganisation/clinical_ethics_committee/index.htm');
g_navNode_9_2_2=g_navNode_9_2.addNode('3712','Counter-fraud',ssUrlPrefix + 'aboutus/ourorganisation/counterfraud/index.htm');
g_navNode_9_2_3=g_navNode_9_2.addNode('6109','Recent highlights',ssUrlPrefix + 'aboutus/ourorganisation/recent-highlights/index.htm');
g_navNode_9_3=g_navNode_9.addNode('4431','Our values',ssUrlPrefix + 'aboutus/values/index.htm','customPageTitle==Our values \x7c About us');
g_navNode_9_3_0=g_navNode_9_3.addNode('4432','How we defined our values',ssUrlPrefix + 'aboutus/values/defining-our-values/index.htm');
g_navNode_9_4=g_navNode_9.addNode('264','Our performance',ssUrlPrefix + 'aboutus/ourperformance/index.htm','customPageTitle==Our performance \x7c About us');
g_navNode_9_4_0=g_navNode_9_4.addNode('3790','Declaration of compliance',ssUrlPrefix + 'aboutus/ourperformance/declarationofcompliance/index.htm');
g_navNode_9_6=g_navNode_9.addNode('3792','Freedom of information',ssUrlPrefix + 'aboutus/foi/index.htm','customPageTitle==Freedom for information \x7c About us');
g_navNode_9_7=g_navNode_9.addNode('267','Policies and publications',ssUrlPrefix + 'aboutus/policiesandpublications/index.htm','customPageTitle==Policies and procedures \x7c About us');
g_navNode_9_7_0=g_navNode_9_7.addNode('3793','360\x26deg\x3b',ssUrlPrefix + 'aboutus/policiesandpublications/360/index.htm');
g_navNode_9_7_1=g_navNode_9_7.addNode('205','AHSC vision',ssUrlPrefix + 'aboutus/policiesandpublications/ahsc_vision/index.htm');
g_navNode_9_7_2=g_navNode_9_7.addNode('3871','Annual health check compliance',ssUrlPrefix + 'aboutus/policiesandpublications/annualhealthcheckcompliance/index.htm');
g_navNode_9_7_3=g_navNode_9_7.addNode('3791','Annual reports',ssUrlPrefix + 'aboutus/policiesandpublications/annualreports/index.htm');
g_navNode_9_7_4=g_navNode_9_7.addNode('3870','Board meeting minutes',ssUrlPrefix + 'aboutus/policiesandpublications/boardminutes/index.htm');
g_navNode_9_7_5=g_navNode_9_7.addNode('198','Business plan',ssUrlPrefix + 'aboutus/policiesandpublications/businessplan/index.htm');
g_navNode_9_7_6=g_navNode_9_7.addNode('1891','MRSA screening',ssUrlPrefix + 'aboutus/policiesandpublications/mrsascreening/index.htm');
g_navNode_9_7_7=g_navNode_9_7.addNode('5159','Nursing and midwifery strategy',ssUrlPrefix + 'aboutus/policiesandpublications/nursing-strategy/index.htm');
g_navNode_9_7_8=g_navNode_9_7.addNode('6695','Quality accounts ',ssUrlPrefix + 'aboutus/policiesandpublications/quality-accounts/index.htm');
g_navNode_9_8=g_navNode_9.addNode('265','Equality and diversity',ssUrlPrefix + 'aboutus/equalityanddiversity/index.htm','customPageTitle==Equality and diversity \x7c About us');
g_navNode_9_9=g_navNode_9.addNode('4555','Foundation trust',ssUrlPrefix + 'aboutus/foundation-trust/index.htm','customPageTitle==Foundation trust \x7c About us');
g_navNode_9_10=g_navNode_9.addNode('1471','Improving patient experience',ssUrlPrefix + 'aboutus/patient_experience/index.htm','customPageTitle==Improving the patient experience \x7c About us ');
g_navNode_9_10_0=g_navNode_9_10.addNode('2928','Delivering same-sex accommodation',ssUrlPrefix + 'aboutus/patient_experience/mixed-sex-accommodation/index.htm');
g_navNode_9_10_0_0=g_navNode_9_10_0.addNode('2975','Completed developments',ssUrlPrefix + 'aboutus/patient_experience/mixed-sex-accommodation/developments/index.htm');
g_navNode_9_10_0_1=g_navNode_9_10_0.addNode('2993','Governance',ssUrlPrefix + 'aboutus/patient_experience/mixed-sex-accommodation/governance/index.htm');
g_navNode_9_11=g_navNode_9.addNode('5061','Safeguarding children and young people',ssUrlPrefix + 'aboutus/safeguarding-children-and-young-people/index.htm','customPageTitle==Safeguarding children and young people \x7c About us ');
g_navNode_9_12=g_navNode_9.addNode('4394','Staff awards',ssUrlPrefix + 'aboutus/oscars/index.htm','customPageTitle==Staff awards \x7c About us');
g_navNode_9_12_0=g_navNode_9_12.addNode('420','Winners and runners-up',ssUrlPrefix + 'aboutus/oscars/winners/index.htm');
g_navNode_9_13=g_navNode_9.addNode('7519','Showcase - doing things differently ',ssUrlPrefix + 'aboutus/showcase/index.htm');
g_navNode_9_13_0=g_navNode_9_13.addNode('7520','Imperial Cancer Research UK Centre',ssUrlPrefix + 'aboutus/showcase/imperial-cancer-research-UK-centre/index.htm');
g_navNode_9_13_1=g_navNode_9_13.addNode('7521','Major trauma centre',ssUrlPrefix + 'aboutus/showcase/major-trauma-centre/index.htm');
g_navNode_9_13_2=g_navNode_9_13.addNode('7522','Breakthrough for MS patients',ssUrlPrefix + 'aboutus/showcase/MS-patients-breakthrough/index.htm');
g_navNode_9_13_3=g_navNode_9_13.addNode('7523','Enhancing our elderly orthopaedic service',ssUrlPrefix + 'aboutus/showcase/enhancing-elderly-orthopaedic-service/index.htm');
g_navNode_9_13_4=g_navNode_9_13.addNode('7524','I care, I track, I care ambassadors',ssUrlPrefix + 'aboutus/showcase/Icare-Itrack/index.htm');
g_navNode_9_13_5=g_navNode_9_13.addNode('7525','Healthy Hearts at Imperial College Healthcare',ssUrlPrefix + 'aboutus/showcase/healthy-hearts/index.htm');
g_navNode_9_13_6=g_navNode_9_13.addNode('7526','Leaps and bounds for lifestyle programme',ssUrlPrefix + 'aboutus/showcase/leaps-bounds-lifestyle-programme/index.htm');
g_navNode_9_14=g_navNode_9.addNode('271','Charity and fundraising',ssUrlPrefix + 'aboutus/charityandfundraising/index.htm','customPageTitle==Charity and fundraising  \x7c About us');
g_navNode_9_14_0=g_navNode_9_14.addNode('4872','Imperial College Healthcare Charity',ssUrlPrefix + 'aboutus/charityandfundraising/imperial-college-healthcare-charity/index.htm');
g_navNode_9_14_1=g_navNode_9_14.addNode('3869','Friends of the Trust',ssUrlPrefix + 'aboutus/charityandfundraising/friends/index.htm');
g_navNode_9_15=g_navNode_9.addNode('275','News',ssUrlPrefix + 'aboutus/news/index.htm','customPageTitle==News \x7c About us','secondaryUrlVariableField==region1','xmlQueryText==xSubType \x3cmatches\x3e \x60NewsItem\x60  \x3cAND\x3e  xNewsItemCategory \x3cmatches\x3e \x60General\x60  \x3cAND\x3e  dDocType \x3cmatches\x3e \x60WebContent\x60  \x3cAND\x3e  xKeyDate \x3e\x3d \x6001/10/2007\x60');
if (SSContributor)
{
g_navNode_9_15_0=g_navNode_9_15.addNode('3955','Add news item',ssUrlPrefix + 'aboutus/news/addnews/index.htm','contributorOnly==TRUE');
}
g_navNode_9_16=g_navNode_9.addNode('268','Working in partnership',ssUrlPrefix + 'aboutus/partnership/index.htm','customPageTitle== Working in partnership \x7c About us');
g_navNode_9_16_0=g_navNode_9_16.addNode('3889','Service development and commissioner relations',ssUrlPrefix + 'aboutus/partnership/servicedevelopmentandcommissionerrelations/index.htm');
g_navNode_9_16_1=g_navNode_9_16.addNode('4043','Interprovider referrals',ssUrlPrefix + 'aboutus/partnership/interprovider_referrals/index.htm');
g_navNode_9_16_2=g_navNode_9_16.addNode('7365','GP practice',ssUrlPrefix + 'aboutus/partnership/GP-practice/index.htm');
g_navNode_9_17=g_navNode_9.addNode('6867','Healthcare messaging partners',ssUrlPrefix + 'aboutus/healthcare-messaging-partners/index.htm');
g_navNode_9_18=g_navNode_9.addNode('460','Environment',ssUrlPrefix + 'aboutus/environment/index.htm','customPageTitle== Environment \x7c About us');
g_navNode_9_19=g_navNode_9.addNode('269','W12 Conferences',ssUrlPrefix + 'aboutus/conferencecentre/index.htm','customPageTitle== W12 conferences \x7c About us');
g_navNode_9_20=g_navNode_9.addNode('270','Fleming Museum',ssUrlPrefix + 'aboutus/museumsandarchives/index.htm','customPageTitle==Fleming museum \x7c About us');
g_navNode_9_22=g_navNode_9.addNode('7851','Web chat',ssUrlPrefix + 'aboutus/web-chat/index.htm');
g_navNode_9_22_0=g_navNode_9_22.addNode('8009','Love Your Liver - 06 January 2012',ssUrlPrefix + 'aboutus/web-chat/love-your-liver/index.htm');
g_navNode_9_22_1=g_navNode_9_22.addNode('8002','Kidney transplant expert online - 13 December 2011',ssUrlPrefix + 'aboutus/web-chat/kidney-transplantation/index.htm');
g_navNode_9_22_2=g_navNode_9_22.addNode('7923','Your gynae questions answered - 2 December 2011',ssUrlPrefix + 'aboutus/web-chat/gynae-questions/index.htm');
g_navNode_9_22_3=g_navNode_9_22.addNode('7883','World-Diabetes-Day - 14 November 2011',ssUrlPrefix + 'aboutus/web-chat/world-diabetes-day/index.htm');
g_navNode_9_23=g_navNode_9.addNode('272','Getting here',ssUrlPrefix + 'aboutus/location/index.htm','customPageTitle==Getting here \x7c About us');
g_navNode_9_24=g_navNode_9.addNode('3882','Contact us',ssUrlPrefix + 'aboutus/contact/index.htm','customPageTitle==Contact us \x7c About us');
g_navNode_9_25=g_navNode_9.addNode('3644','Accessibility',ssUrlPrefix + 'aboutus/accessibility/index.htm','Navigation==Footer','customPageTitle==Accessibility \x7c About us');
g_navNode_9_26=g_navNode_9.addNode('3645','Disclaimer',ssUrlPrefix + 'aboutus/disclaimer/index.htm','Navigation==Footer','customPageTitle==Disclaimer \x7c About us');
g_navNode_9_27=g_navNode_9.addNode('3646','Site map',ssUrlPrefix + 'aboutus/sitemap/index.htm','Navigation==Footer','customPageTitle==Site map \x7c About us');
g_navNode_9_30=g_navNode_9.addNode('7476','Twitter',ssUrlPrefix + 'aboutus/twitter/index.htm','Navigation==Footer','customPageTitle==Twitter \x7c About us');
g_navNode_9_31=g_navNode_9.addNode('7386','Cookies',ssUrlPrefix + 'aboutus/cookies/index.htm','Navigation==Footer','customPageTitle==Cookies \x7c About us ');

