/////////////////////////////////////////////////////////////////////////////
// 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('2392','Home',ssUrlPrefix + 'index.html',null);
g_navNode_3=g_navNode_Root.addNode('2403','Contact Us',ssUrlPrefix + 'contact/index.html','hideLeft==TRUE');
g_navNode_3_0=g_navNode_3.addNode('3112','Enquiry Form',ssUrlPrefix + 'contact/form/index.html','showNav==true');
g_navNode_3_1=g_navNode_3.addNode('3113','Page Not Found',ssUrlPrefix + 'contact/notfound/index.html','hideLeft==true','refreshUrl==http\x3a//www.raytheon.com/contact/notfound/index.html');
g_navNode_4=g_navNode_Root.addNode('2405','Connect With Us',ssUrlPrefix + 'connections/index.html','hideLeft==TRUE','refreshUrl==http\x3a//www.raytheon.com/connections/','showNav==true');
g_navNode_5=g_navNode_Root.addNode('2406','Search',ssUrlPrefix + 'search/index.html','hideLeft==false','showNav==true');
g_navNode_6=g_navNode_Root.addNode('2395','Our Company',ssUrlPrefix + 'ourcompany/index.html','graphicOnly==true','showNav==true');
g_navNode_6_0=g_navNode_6.addNode('2799','History',ssUrlPrefix + 'ourcompany/history/index.html','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_6_0_0=g_navNode_6_0.addNode('2804','The Early Days',ssUrlPrefix + 'ourcompany/history/earlydays/index.html','refreshUrl==http\x3a//www.raytheon.com/ourcompany/history/early/index.html','showNav==true','showTopPage==true');
g_navNode_6_0_1=g_navNode_6_0.addNode('2805','Technology Leadership',ssUrlPrefix + 'ourcompany/history/leadership/index.html','refreshUrl==http\x3a//www.raytheon.com/ourcompany/history/leadership/index.html','showNav==true');
g_navNode_6_0_2=g_navNode_6_0.addNode('2806','Milestones',ssUrlPrefix + 'ourcompany/history/milestones/index.html','showNav==true','showTopPage==true');
g_navNode_6_1=g_navNode_6.addNode('3711','Info for Suppliers',ssUrlPrefix + 'ourcompany/suppliers/index.html','showNav==true');
g_navNode_6_2=g_navNode_6.addNode('2800','Innovation',ssUrlPrefix + 'ourcompany/innovation/index.html','refreshUrl==http\x3a//www.raytheon.com/ourcompany/innovation/index.html','showNav==true','showSideBar==true');
if (SSContributor)
{
g_navNode_6_2_1=g_navNode_6_2.addNode('2808','Technology Today',ssUrlPrefix + 'ourcompany/innovation/tech_today/index.html','contributorOnly==TRUE','showNav==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_6_2_2=g_navNode_6_2.addNode('2809','Defender Magazine',ssUrlPrefix + 'ourcompany/innovation/defender/index.html','contributorOnly==TRUE','showNav==true','showSideBar==true','showTopPage==false');
if (SSContributor)
{
g_navNode_6_2_2_0=g_navNode_6_2_2.addNode('2913','Issue Archive ',ssUrlPrefix + 'ourcompany/innovation/defender/archive/index.html','contributorOnly==TRUE','showNav==true');
}
}
g_navNode_6_3=g_navNode_6.addNode('2798','Key Financial Figures ',ssUrlPrefix + 'ourcompany/keyfigures/index.html','showNav==true','showSideBar==false');
g_navNode_6_4=g_navNode_6.addNode('2801','Leadership',ssUrlPrefix + 'ourcompany/Leadership/index.html','showNav==true','showSideBar==false','showTopPage==false');
g_navNode_6_4_0=g_navNode_6_4.addNode('3098','Global Leadership',ssUrlPrefix + 'ourcompany/Leadership/globalleadership/index.html','refreshUrl==http\x3a//www.raytheon.com/ourcompany/leadership/index.html','showNav==true','showSideBar==true');
g_navNode_6_4_1=g_navNode_6_4.addNode('3097','UK Leadership',ssUrlPrefix + 'ourcompany/Leadership/ukleadership/index.html','showNav==true');
g_navNode_6_4_2=g_navNode_6_4.addNode('2810','Raytheon Professional Services',ssUrlPrefix + 'ourcompany/Leadership/prof_services/index.html','showNav==true');
g_navNode_6_5=g_navNode_6.addNode('2802','Our Culture',ssUrlPrefix + 'ourcompany/ourculture/index.html','graphicOnly==true','refreshUrl==http\x3a//www.raytheon.com/ourcompany/ourculture/','showNav==true','showSideBar==false');
g_navNode_6_6=g_navNode_6.addNode('2803','UK Facilities',ssUrlPrefix + 'ourcompany/facilities/index.html','showNav==true','showSideBar==false');
g_navNode_6_6_1=g_navNode_6_6.addNode('2840','Broughton ',ssUrlPrefix + 'ourcompany/facilities/broughton/index.html','showNav==true','showSideBar==false');
g_navNode_6_6_1_0=g_navNode_6_6_1.addNode('2895','History',ssUrlPrefix + 'ourcompany/facilities/broughton/History/index.html','showNav==true');
g_navNode_6_6_2=g_navNode_6_6.addNode('2841','Fylingdales',ssUrlPrefix + 'ourcompany/facilities/fylingdales/index.html','showNav==true','showSideBar==false','showTopPage==false');
g_navNode_6_6_2_0=g_navNode_6_6_2.addNode('2896','History',ssUrlPrefix + 'ourcompany/facilities/fylingdales/history/index.html','showNav==true');
g_navNode_6_6_3=g_navNode_6_6.addNode('2842','Glenrothes',ssUrlPrefix + 'ourcompany/facilities/glenrothes/index.html','showNav==true','showSideBar==false','showTopPage==false');
g_navNode_6_6_3_0=g_navNode_6_6_3.addNode('2897','History',ssUrlPrefix + 'ourcompany/facilities/glenrothes/history/index.html','showNav==true');
g_navNode_6_6_4=g_navNode_6_6.addNode('2843','Harlow',ssUrlPrefix + 'ourcompany/facilities/harlow/index.html','showNav==true','showSideBar==false','showTopPage==false');
g_navNode_6_6_4_0=g_navNode_6_6_4.addNode('2898','History',ssUrlPrefix + 'ourcompany/facilities/harlow/History/index.html','showNav==true');
g_navNode_6_6_5=g_navNode_6_6.addNode('2844','London',ssUrlPrefix + 'ourcompany/facilities/london/index.html','showNav==true');
g_navNode_6_6_6=g_navNode_6_6.addNode('2846','Waddington',ssUrlPrefix + 'ourcompany/facilities/waddington/index.html','showNav==true');
g_navNode_6_6_7=g_navNode_6_6.addNode('2847','Warminster',ssUrlPrefix + 'ourcompany/facilities/warminster/index.html','showNav==true');
g_navNode_7=g_navNode_Root.addNode('2396','Businesses',ssUrlPrefix + 'businesses/index.html','graphicOnly==true','refreshUrl==http\x3a//www.raytheon.com/businesses/','showNav==true');
g_navNode_8=g_navNode_Root.addNode('2397','Capabilities',ssUrlPrefix + 'capabilities/index.html','graphicOnly==true','refreshUrl==http\x3a//www.raytheon.com/capabilities/','showNav==true');
g_navNode_8_0=g_navNode_8.addNode('2812','Strategic Markets',ssUrlPrefix + 'capabilities/markets/index.html','graphicOnly==true','showNav==true','showSideBar==false');
g_navNode_8_0_0=g_navNode_8_0.addNode('2848','C3i',ssUrlPrefix + 'capabilities/markets/c3i/index.html','showNav==true','showSideBar==true');
g_navNode_8_0_1=g_navNode_8_0.addNode('2849','Effects',ssUrlPrefix + 'capabilities/markets/effects/index.html','refreshUrl==http\x3a//www.raytheon.com/capabilities/markets/effects/index.html','showNav==true','showSideBar==true');
g_navNode_8_0_2=g_navNode_8_0.addNode('2850','National Security',ssUrlPrefix + 'capabilities/markets/nationalsecurity/index.html','showNav==true','showSideBar==true');
g_navNode_8_0_3=g_navNode_8_0.addNode('2851','Information Operations',ssUrlPrefix + 'capabilities/markets/ioia/index.html','refreshUrl==http\x3a//www.raytheon.com/capabilities/markets/ioia/','showNav==true','showSideBar==true');
g_navNode_8_0_4=g_navNode_8_0.addNode('2852','Mission Support',ssUrlPrefix + 'capabilities/markets/missionsupport/index.html','refreshUrl==http\x3a//www.raytheon.com/capabilities/markets/mission/index.html','showNav==true','showSideBar==true');
g_navNode_8_0_5=g_navNode_8_0.addNode('2853','Robotics',ssUrlPrefix + 'capabilities/markets/robotics/index.html','refreshUrl==http\x3a//www.raytheon.com/capabilities/markets/robotics/index.html','showNav==true','showSideBar==true');
g_navNode_8_0_6=g_navNode_8_0.addNode('2854','Sensing',ssUrlPrefix + 'capabilities/markets/sensing/index.html','refreshUrl==http\x3a//www.raytheon.com/capabilities/markets/sensing/index.html','showNav==true','showSideBar==true');
g_navNode_8_1=g_navNode_8.addNode('2813','Mission Systems Integration',ssUrlPrefix + 'capabilities/msi/index.html','graphicOnly==true','showNav==true','showSideBar==true');
g_navNode_8_2=g_navNode_8.addNode('2814','Products \x26 Programmes',ssUrlPrefix + 'capabilities/products/index.html','showNav==true');
g_navNode_8_2_0=g_navNode_8_2.addNode('2861','Air Traffic Mgmt Systems',ssUrlPrefix + 'capabilities/products/atms/index.html','showNav==true');
g_navNode_8_2_0_0=g_navNode_8_2_0.addNode('3202','Solutions',ssUrlPrefix + 'capabilities/products/atms/solutions/index.html','showNav==true');
g_navNode_8_2_0_1=g_navNode_8_2_0.addNode('3201','MSSR',ssUrlPrefix + 'capabilities/products/atms/mssr/index.html','showNav==true','showSideBar==true');
g_navNode_8_2_1=g_navNode_8_2.addNode('2860',' ASTOR \x26 Global ISR',ssUrlPrefix + 'capabilities/products/astor/index.html','showNav==true');
g_navNode_8_2_2=g_navNode_8_2.addNode('2862','Command \x26 Control',ssUrlPrefix + 'capabilities/products/cmdcontrol/index.html','showNav==true');
g_navNode_8_2_2_0=g_navNode_8_2_2.addNode('2882','ArrcC2IS',ssUrlPrefix + 'capabilities/products/cmdcontrol/arrc_c2is/index.html','showNav==true');
g_navNode_8_2_2_1=g_navNode_8_2_2.addNode('2883','Jetts',ssUrlPrefix + 'capabilities/products/cmdcontrol/jetts/index.html','showNav==true');
g_navNode_8_2_3=g_navNode_8_2.addNode('3944','Defence Targeting Toolset',ssUrlPrefix + 'capabilities/products/dtt/index.html');
g_navNode_8_2_4=g_navNode_8_2.addNode('2863','Defence Training Rationalisation',ssUrlPrefix + 'capabilities/products/dtr/index.html','showNav==true','showSideBar==false');
g_navNode_8_2_5=g_navNode_8_2.addNode('2944','Global Training Solutions ',ssUrlPrefix + 'capabilities/products/gtsd/index.html','refreshUrl==http\x3a//www.raytheon.com/businesses/rts/overview/gts/index.html','showNav==true');
g_navNode_8_2_7=g_navNode_8_2.addNode('2945','Mission Support \x26 Services',ssUrlPrefix + 'capabilities/products/mss/index.html','showNav==true');
g_navNode_8_2_8=g_navNode_8_2.addNode('2868','Missile Systems',ssUrlPrefix + 'capabilities/products/missilesystems/index.html','showNav==true');
g_navNode_8_2_8_1=g_navNode_8_2_8.addNode('2875','Other Weapons',ssUrlPrefix + 'capabilities/products/missilesystems/weapons/index.html','showNav==true','showSideBar==false');
g_navNode_8_2_8_2=g_navNode_8_2_8.addNode('2876','Paveway IV',ssUrlPrefix + 'capabilities/products/missilesystems/paveway_iv/index.html','showNav==true');
g_navNode_8_2_8_3=g_navNode_8_2_8.addNode('2877','Platform Integration',ssUrlPrefix + 'capabilities/products/missilesystems/integration/index.html','showNav==true');
g_navNode_8_2_9=g_navNode_8_2.addNode('2946','National Security \x26 ICIM ',ssUrlPrefix + 'capabilities/products/nationalsecurity_icim/index.html','showNav==true');
g_navNode_8_2_9_0=g_navNode_8_2_9.addNode('2950','ICIM',ssUrlPrefix + 'capabilities/products/nationalsecurity_icim/icim/index.html','refreshUrl==http\x3a//www.raytheon.com/capabilities/products/ibs/immigration_control/','showNav==true');
g_navNode_8_2_10=g_navNode_8_2.addNode('2866','Naval Integration',ssUrlPrefix + 'capabilities/products/naval/index.html','showNav==true');
g_navNode_8_2_10_0=g_navNode_8_2_10.addNode('2878','T45 Navigation and Bridge System',ssUrlPrefix + 'capabilities/products/naval/t45/index.html','showNav==true');
g_navNode_8_2_11=g_navNode_8_2.addNode('2874','Navigation Systems',ssUrlPrefix + 'capabilities/products/navigation/index.html','showNav==true');
g_navNode_8_2_12=g_navNode_8_2.addNode('2867','Power and Control Electronics',ssUrlPrefix + 'capabilities/products/pwr_Ctrl/index.html','showNav==true');
g_navNode_8_2_13=g_navNode_8_2.addNode('2869','Semiconductors',ssUrlPrefix + 'capabilities/products/semiconductors/index.html','showNav==true');
g_navNode_8_2_15=g_navNode_8_2.addNode('2871','Software Design',ssUrlPrefix + 'capabilities/products/SoftwareDesign/index.html','showNav==true');
g_navNode_9=g_navNode_Root.addNode('2398','Corporate Social Responsibility',ssUrlPrefix + 'responsibility/index.html','showNav==true');
g_navNode_9_0=g_navNode_9.addNode('2815','Ethics',ssUrlPrefix + 'responsibility/ethics/index.html','graphicOnly==true','showNav==true');
g_navNode_9_0_0=g_navNode_9_0.addNode('2915','Program Overview',ssUrlPrefix + 'responsibility/ethics/ProgramOverview/index.html','showNav==true');
g_navNode_9_0_1=g_navNode_9_0.addNode('2918','Ethics Answers ',ssUrlPrefix + 'responsibility/ethics/EthicsAnswers/index.html','showNav==true','showSideBar==true');
g_navNode_9_0_2=g_navNode_9_0.addNode('2916','Code of Conduct',ssUrlPrefix + 'responsibility/ethics/CodeofConduct/index.html','refreshUrl==http\x3a//www.raytheon.com/ourcompany/stellent/groups/public/documents/legacy_site/cms01_023524.pdf');
g_navNode_9_0_3=g_navNode_9_0.addNode('2917','Ethics and Gift Giving ',ssUrlPrefix + 'responsibility/ethics/EthicsandGiftGiving/index.html','refreshUrl==http\x3a//www.raytheon.com/responsibility/stewardship/ethics/ethics_gifts/index.html','showNav==true','showSideBar==false');
g_navNode_9_0_4=g_navNode_9_0.addNode('2919','Interactive Stewardship Report',ssUrlPrefix + 'responsibility/ethics/InteractiveStewardshipReport/index.html','refreshUrl==http\x3a//media.corporate-ir.net/media_files/irol/84/84193/CRR_09/HTML/index.html');
g_navNode_9_1=g_navNode_9.addNode('2816','Governance',ssUrlPrefix + 'responsibility/governance/index.html','refreshUrl==http\x3a//investor.raytheon.com/phoenix.zhtml?c\x3d84193\x26p\x3dirol-govHighlights','showNav==true');
g_navNode_9_2=g_navNode_9.addNode('2817','Energy ',ssUrlPrefix + 'responsibility/energy/index.html','refreshUrl==http\x3a//www.raytheon.com/responsibility/stewardship/sustainability/energy/index.html','showNav==true');
g_navNode_9_3=g_navNode_9.addNode('2818','Environment',ssUrlPrefix + 'responsibility/environment/index.html','refreshUrl==http\x3a//www.raytheon.com/responsibility/stewardship/sustainability/environment/index.html','showNav==true');
g_navNode_9_4=g_navNode_9.addNode('2819','Safety ',ssUrlPrefix + 'responsibility/safety/index.html','refreshUrl==http\x3a//www.raytheon.com/responsibility/stewardship/safety/index.html','showNav==true');
g_navNode_9_5=g_navNode_9.addNode('3275','Sponsorship',ssUrlPrefix + 'responsibility/rslsponsor/index.html','contributorOnly==false','showNav==false','showSideBar==false');
g_navNode_10=g_navNode_Root.addNode('2399','Diversity',ssUrlPrefix + 'diversity/index.html','refreshUrl==http\x3a//www.raytheon.com/diversity/index.html','showNav==true');
g_navNode_10_0=g_navNode_10.addNode('2855','Our Philosophy',ssUrlPrefix + 'diversity/philosophy/index.html','refreshUrl==http\x3a//www.raytheon.com/diversity/philosophy/index.html','showNav==true');
g_navNode_10_1=g_navNode_10.addNode('2856','Our Approach',ssUrlPrefix + 'diversity/approach/index.html','refreshUrl==http\x3a//www.raytheon.com/diversity/philosophy/index.html','showNav==true');
g_navNode_10_2=g_navNode_10.addNode('2857','Leadership',ssUrlPrefix + 'diversity/leadership/index.html','refreshUrl==http\x3a//www.raytheon.com/diversity/leadership/index.html');
g_navNode_10_3=g_navNode_10.addNode('2858','Initiatives',ssUrlPrefix + 'diversity/initiatives/index.html','refreshUrl==http\x3a//www.raytheon.com/diversity/initiatives/index.html','showNav==true');
g_navNode_10_4=g_navNode_10.addNode('2859','Highlights \x26 Recognition',ssUrlPrefix + 'diversity/highlights/index.html','refreshUrl==http\x3a//www.raytheon.com/diversity/highlights/2008/index.html','showNav==true','showTopPage==true');
g_navNode_11=g_navNode_Root.addNode('2400','Newsroom',ssUrlPrefix + 'newsroom/index.html','showNav==true');
g_navNode_11_0=g_navNode_11.addNode('2820','News \x26 Features ',ssUrlPrefix + 'newsroom/features/index.html','showNav==true');
g_navNode_11_0_0=g_navNode_11_0.addNode('2826','Archived News',ssUrlPrefix + 'newsroom/features/archive/index.html','showNav==true');
g_navNode_11_0_0_0=g_navNode_11_0_0.addNode('4394','2010',ssUrlPrefix + 'newsroom/features/archive/2010/index.html','showNav==true');
g_navNode_11_0_0_1=g_navNode_11_0_0.addNode('4393','2009',ssUrlPrefix + 'newsroom/features/archive/2009/index.html','showNav==true');
g_navNode_11_0_0_2=g_navNode_11_0_0.addNode('2953','2008',ssUrlPrefix + 'newsroom/features/archive/2008/index.html','showNav==true');
g_navNode_11_0_0_3=g_navNode_11_0_0.addNode('2954','2007',ssUrlPrefix + 'newsroom/features/archive/2007/index.html','showNav==true');
g_navNode_11_0_1=g_navNode_11_0.addNode('3222','Armed Forces Day',ssUrlPrefix + 'newsroom/features/armedforcesday/index.html','showNav==true','showSideBar==true');
g_navNode_11_0_3=g_navNode_11_0.addNode('3805','ATMS',ssUrlPrefix + 'newsroom/features/atms_saudi/index.html','showNav==true');
g_navNode_11_0_5=g_navNode_11_0.addNode('3806','Community Sponsorship Tool',ssUrlPrefix + 'newsroom/features/community/index.html','showNav==true');
g_navNode_11_0_8=g_navNode_11_0.addNode('4421','ITEC',ssUrlPrefix + 'newsroom/features/itec/index.html','showNav==false','showSideBar==true','sideBarWidth==250');
g_navNode_11_0_8_0=g_navNode_11_0_8.addNode('4422','Advertising',ssUrlPrefix + 'newsroom/features/itec/Advertising/index.html');
g_navNode_11_0_8_1=g_navNode_11_0_8.addNode('4423','Media Kit',ssUrlPrefix + 'newsroom/features/itec/MediaKit/index.html');
g_navNode_11_0_9=g_navNode_11_0.addNode('4990','UK Customer News',ssUrlPrefix + 'newsroom/features/UK-Customer-News/index.html','showNav==true');
g_navNode_11_1=g_navNode_11.addNode('2821','Technology \x26 Innovation ',ssUrlPrefix + 'newsroom/technology/index.html','graphicOnly==true','refreshUrl==http\x3a//www.raytheon.com/newsroom/technology/index.html','showNav==true');
g_navNode_11_2=g_navNode_11.addNode('2822','Photo Gallery',ssUrlPrefix + 'newsroom/photogallery/index.html','refreshUrl==http\x3a//www.raytheon.com/newsroom/gallery/index.html','showNav==true');
g_navNode_11_3=g_navNode_11.addNode('2823','Tradeshow Calendar',ssUrlPrefix + 'newsroom/tradeshow/index.html','refreshUrl==http\x3a//www.raytheon.com/newsroom/calendar/index.html','showNav==true');
g_navNode_11_4=g_navNode_11.addNode('2824','Executive Speeches',ssUrlPrefix + 'newsroom/speeches/index.html','showNav==true');
g_navNode_11_5=g_navNode_11.addNode('2825','Media Contacts',ssUrlPrefix + 'newsroom/mediacontacts/index.html','refreshUrl==http\x3a//www.raytheon.com/newsroom/media/index.html','showNav==true');
g_navNode_11_6=g_navNode_11.addNode('3152','Photo Library',ssUrlPrefix + 'newsroom/photolibrary/index.html','showNav==true');
g_navNode_11_6_0=g_navNode_11_6.addNode('3157','ASTOR',ssUrlPrefix + 'newsroom/photolibrary/astor/index.html','showNav==true');
g_navNode_11_6_1=g_navNode_11_6.addNode('3158','ATMS',ssUrlPrefix + 'newsroom/photolibrary/atms/index.html','showNav==true');
g_navNode_11_6_2=g_navNode_11_6.addNode('3159','Identifcation Systems',ssUrlPrefix + 'newsroom/photolibrary/identification/index.html','showNav==true');
g_navNode_11_6_3=g_navNode_11_6.addNode('3160','JETTS',ssUrlPrefix + 'newsroom/photolibrary/jetts/index.html','showNav==true');
g_navNode_11_6_4=g_navNode_11_6.addNode('3161','Micro-electronics',ssUrlPrefix + 'newsroom/photolibrary/micro/index.html','showNav==true');
g_navNode_11_6_5=g_navNode_11_6.addNode('3162','Navigation Systems',ssUrlPrefix + 'newsroom/photolibrary/navigationsystems/index.html','showNav==true');
g_navNode_11_6_6=g_navNode_11_6.addNode('3153','Paveway IV',ssUrlPrefix + 'newsroom/photolibrary/paveway/index.html','showNav==true');
g_navNode_11_6_7=g_navNode_11_6.addNode('3463','DSEi',ssUrlPrefix + 'newsroom/photolibrary/dsei/index.html','showNav==false');
g_navNode_12=g_navNode_Root.addNode('2401','Careers',ssUrlPrefix + 'careers/index.html','refreshUrl==http\x3a//www.rayjobs.com','showSideBar==true');
g_navNode_12_0=g_navNode_12.addNode('3119','Search Jobs',ssUrlPrefix + 'careers/search/index.html');
g_navNode_12_1=g_navNode_12.addNode('3120','Apply',ssUrlPrefix + 'careers/apply/index.html');
g_navNode_13=g_navNode_Root.addNode('4021','Removed',ssUrlPrefix + 'removed/index.html','browserTitle==File Removed');

