/////////////////////////////////////////////////////////////////////////////
// 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('57','Newsroom',ssUrlPrefix + 'index.html',null,'graphicOnly==true','rssTitle==Newsroom','rssUrl==http\x3a//raytheon.mediaroom.com/index.php?s\x3d43\x26pagetemplate\x3drss','showNav==true','showSideBar==true','showTopPage==false','sideBarWidth==180');
g_navNode_2=g_navNode_Root.addNode('411','Media Contacts',ssUrlPrefix + 'media/index.html','graphicOnly==false','showNav==true','showSideBar==false','showTopPage==true');
g_navNode_3=g_navNode_Root.addNode('408','Photo Gallery',ssUrlPrefix + 'gallery/index.html','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_3_0=g_navNode_3.addNode('2589','Photos',ssUrlPrefix + 'gallery/photos/index.html','hideLeft==TRUE','showNav==TRUE','showTopPage==TRUE');
g_navNode_4=g_navNode_Root.addNode('2631','Video Gallery',ssUrlPrefix + 'videogallery/index.html','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_5=g_navNode_Root.addNode('3134','Dual Band Podcast ',ssUrlPrefix + 'podcasts/index.html','browserTitle==Dual Band Podcast','graphicOnly==true','hideLeft==false','rssTitle==Raytheon Company\x3a Dual Band Postcast','rssUrl==http\x3a//www.raytheon.com/rss/rtn_dualband/main.rss ','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
g_navNode_5_1=g_navNode_5.addNode('3197','Meet the Team',ssUrlPrefix + 'podcasts/team/index.html','browserTitle==Dual Band Podcast Hosts','showNav==true','showSideBar==true','sideBarWidth==250');
g_navNode_6=g_navNode_Root.addNode('409','Tradeshow Calendar',ssUrlPrefix + 'calendar/index.html','showNav==true','showSideBar==false');
g_navNode_7=g_navNode_Root.addNode('2741','News Releases',ssUrlPrefix + 'news_releases/index.html','hideLeft==false','refreshUrl==http\x3a//raytheon.mediaroom.com/index.php?year\x3d2009\x26s\x3d43');
g_navNode_9=g_navNode_Root.addNode('396','Features Archive',ssUrlPrefix + 'feature/index.html','archiveQuery==xEffectiveDate \x3e\x3d \x6001/01/2007\x60  \x3cAND\x3e  xEffectiveDate \x3c \x6012/31/2007\x60','rssTitle==Features','rssUrl==http\x3a//www.raytheon.com/rss/feature/main.rss','showNav==TRUE','showTopPage==TRUE');
g_navNode_9_0=g_navNode_9.addNode('2485','2008 Archive',ssUrlPrefix + 'feature/archive/index.html','hideLeft==FALSE','showNav==TRUE','showTopPage==TRUE');
g_navNode_9_1=g_navNode_9.addNode('540','2007 Archive',ssUrlPrefix + 'feature/archive07/index.html','showNav==TRUE','showTopPage==TRUE');
g_navNode_9_2=g_navNode_9.addNode('556','Raytheon\u2019s Hung Nguyen Voted Test Engineer of the Year',ssUrlPrefix + 'feature/rtn08_nguyen_eoy/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_3=g_navNode_9.addNode('570',' ISS is launched',ssUrlPrefix + 'feature/rtn08_iss_launch/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_4=g_navNode_9.addNode('604','Bill Swanson Featured in Aviation Week',ssUrlPrefix + 'feature/rtn08_whs_aw/index.html','hideLeft==true','showNav==true','showSideBar==false');
g_navNode_9_5=g_navNode_9.addNode('671','Raytheon Directors Named \u201c2008 Board of the Year\u201d',ssUrlPrefix + 'feature/rtn08_nacd_honor/index.html','hideLeft==TRUE','showNav==true','showSideBar==true');
g_navNode_9_6=g_navNode_9.addNode('684','Catalyst',ssUrlPrefix + 'feature/rtn08_catalyst/index.html','graphicOnly==true','hideLeft==TRUE','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_7=g_navNode_9.addNode('685','HS Today Article',ssUrlPrefix + 'feature/rtn08_hstoday/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_8=g_navNode_9.addNode('841',' 2007 Online Annual Report',ssUrlPrefix + 'feature/rtn_annual_report07/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_9=g_navNode_9.addNode('1072','American Red Cross Honors Raytheon for Its Commitment to Disaster Relief',ssUrlPrefix + 'feature/rtn08_red_crss/index.html','hideLeft==TRUE','showSideBar==true','showTopPage==true');
g_navNode_9_10=g_navNode_9.addNode('1162','Raytheon 2007 Stewardship Report',ssUrlPrefix + 'feature/rtn08_sr/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_11=g_navNode_9.addNode('1188','Raytheon CIO Receives Distinguished Alumni Award ',ssUrlPrefix + 'feature/rtn08_rhoads_award/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_12=g_navNode_9.addNode('1247','Sea Based Terminal Test',ssUrlPrefix + 'feature/seabasedterminaltest/index.html','browserTitle==Sea Based Terminal test','graphicOnly==true','hideLeft==TRUE','showNav==true','showSideBar==true','sideBarWidth==181');
g_navNode_9_13=g_navNode_9.addNode('1348','MKV-R Featured in Aviation Week and Space Technology Magazine',ssUrlPrefix + 'feature/rtn08_mkv-r/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==false');
g_navNode_9_15=g_navNode_9.addNode('1568','AIM-9X Team Celebrates 3,000th Delivery ',ssUrlPrefix + 'feature/aim9xcelebrates/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','sideBarWidth==181');
g_navNode_9_15_0=g_navNode_9_15.addNode('1569','Video',ssUrlPrefix + 'feature/aim9xcelebrates/video/index.html','browserTitle==Aim-9X Video','hideLeft==true','showNav==true');
g_navNode_9_15_1=g_navNode_9_15.addNode('1578','gallery',ssUrlPrefix + 'feature/aim9xcelebrates/gallery/index.htm','browserTitle==Aim-9X Gallery','hideLeft==true','showNav==true');
g_navNode_9_16=g_navNode_9.addNode('1576','William H. Swanson Interview Published in Jane\'s Defence Weekly',ssUrlPrefix + 'feature/rtn08_whsjdw/index.html','contributorOnly==false','hideLeft==true','showNav==true','showSideBar==true');
g_navNode_9_17=g_navNode_9.addNode('1585','SM-3 Satellite Intercept',ssUrlPrefix + 'feature/sm3_intercept/index.html','browserTitle==RMS SM-3 Satellite Intercept','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
g_navNode_9_17_0=g_navNode_9_17.addNode('1595','video',ssUrlPrefix + 'feature/sm3_intercept/video/index.html','browserTitle==RMS SM-3 Video','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_18=g_navNode_9.addNode('1586','RSL Heritage Campaign',ssUrlPrefix + 'feature/rslheritage07/index.html','graphicOnly==true','hideLeft==true','refreshTime==0','refreshUrl==/newsroom/feature/rtn08_rsl100yrs/index.html','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_19=g_navNode_9.addNode('1587','RSL Celebrates 100 Year Anniversary',ssUrlPrefix + 'feature/rtn08_rsl100yrs/index.html','graphicOnly==false','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
g_navNode_9_20=g_navNode_9.addNode('1590','Math Hero Awards\x3a The Numbers Add Up',ssUrlPrefix + 'feature/rtn08_mmu_hero/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_22=g_navNode_9.addNode('1650','Raytheon\u2019s Test Launches JSOW-ER to Next Stage',ssUrlPrefix + 'feature/jsow_er_07-16-08/index.html','browserTitle==RMS JSOW-ER','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','sideBarWidth==181');
g_navNode_9_22_0=g_navNode_9_22.addNode('1651','video',ssUrlPrefix + 'feature/jsow_er_07-16-08/video/index.html','browserTitle==RMS JSOW-ER Video','hideLeft==true','showNav==true');
g_navNode_9_22_1=g_navNode_9_22.addNode('1652','gallery',ssUrlPrefix + 'feature/jsow_er_07-16-08/gallery/index.html','browserTitle==RMS JSOW-ER Gallery','hideLeft==true','showNav==true');
g_navNode_9_23=g_navNode_9.addNode('1677','RTN test',ssUrlPrefix + 'feature/rtn08_test/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_24=g_navNode_9.addNode('1687','Paveway IV, The world standard for precision guided munitions',ssUrlPrefix + 'feature/paveway_iv/index.html','browserTitle==Raytheon Systems Limited Paveway IV','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','sideBarWidth==181');
g_navNode_9_31=g_navNode_9.addNode('1956','Standard Missile-6 ',ssUrlPrefix + 'feature/sm6_09-08/index.html','browserTitle==Standard Missile-6','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','sideBarWidth==181');
g_navNode_9_31_0=g_navNode_9_31.addNode('1957','Video',ssUrlPrefix + 'feature/sm6_09-08/video/index.html','browserTitle==Standard Missile-6 Video','hideLeft==true','showNav==true');
g_navNode_9_31_1=g_navNode_9_31.addNode('1958','Gallery',ssUrlPrefix + 'feature/sm6_09-08/gallery/index.html','browserTitle==Standard Missile-6 Gallery','hideLeft==true','showNav==true');
g_navNode_9_32=g_navNode_9.addNode('1963','S\x26P Upgrade',ssUrlPrefix + 'feature/rtn08_sp/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_33=g_navNode_9.addNode('1967','Remembering 9/11',ssUrlPrefix + 'feature/rtn08_9_11/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==false','showTopPage==true');
g_navNode_9_34=g_navNode_9.addNode('1981','Raytheon Sponsors National MATHCOUNTS Competition',ssUrlPrefix + 'feature/rtn08_mathcounts/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_35=g_navNode_9.addNode('1983','Raytheon\'s IT Organization Receives Multiple Honors',ssUrlPrefix + 'feature/rtn08_infowk/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_36=g_navNode_9.addNode('1984','Patriot Place',ssUrlPrefix + 'feature/rtn08_patsplace/index.html','hideLeft==true','showNav==true','showSideBar==false','showTopPage==true');
g_navNode_9_37=g_navNode_9.addNode('1987','MathMovesU Launches New \u201cWorld\u201d',ssUrlPrefix + 'feature/rtn08_mmu_nwrld/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_38=g_navNode_9.addNode('1989','Raytheon Training Capabilities a Match for U.S. Navy  ',ssUrlPrefix + 'feature/ray08_navy_trn/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_39=g_navNode_9.addNode('1992','Lee Silvestre Teams With NASA to Discuss STEM',ssUrlPrefix + 'feature/rtn08_nasa_stem/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_50=g_navNode_9.addNode('2268','Rebecca Rhoads Named CIO of the Year ',ssUrlPrefix + 'feature/rtn08_cioyr/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_52=g_navNode_9.addNode('2321','Raytheon awarded \x2454 million to develop Multiple Kill Vehicle for ballistic missile defense',ssUrlPrefix + 'feature/mkvaward_11-10-08/index.html','browserTitle==Raytheon Missile Systems Multiple Kill Vehicle ','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','sideBarWidth==181');
g_navNode_9_53=g_navNode_9.addNode('2331','Raytheon Brings Math and Science to Patriot Place',ssUrlPrefix + 'feature/rtn08_mmuscifair/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_56=g_navNode_9.addNode('2357','Introducing the Inaugural Raytheon Scholarship Winners at The Citadel',ssUrlPrefix + 'feature/rtn08_citadel/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_57=g_navNode_9.addNode('2361','NLOS-LS team completes first guided test flight of Precision Attack Missile \x28PAM\x29 from a Container Launch Unit  ',ssUrlPrefix + 'feature/nlos_ls_11-08/index.html','browserTitle==Raytheon Missile Systems NLOS-LS','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
g_navNode_9_58=g_navNode_9.addNode('2365','Raytheon exhibits at Training and Simulation Conference',ssUrlPrefix + 'feature/iitsec/index.html','contributorOnly==false','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_60=g_navNode_9.addNode('2367','Help Wanted\x3a Raytheon Looking for Cyber Athletes',ssUrlPrefix + 'feature/rtn08_cyber_athletes/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_61=g_navNode_9.addNode('2369','Raytheon tests Laser Area Defense System against flying mortars',ssUrlPrefix + 'feature/laser_ciws_1-09/index.html','browserTitle==Raytheon Missile Systems LADS','contributorOnly==false','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
g_navNode_9_61_0=g_navNode_9_61.addNode('2558','video',ssUrlPrefix + 'feature/laser_ciws_1-09/video/index.html','browserTitle==Missile Systems Laser CIWS','hideLeft==true','showNav==true','showTopPage==true');
g_navNode_9_62=g_navNode_9.addNode('2371','Raytheon Participates in National Weather Service Technology Day',ssUrlPrefix + 'feature/rtn08_weather_day/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_63=g_navNode_9.addNode('2373','Raytheon kill vehicle and radars key to ballistic missile intercept ',ssUrlPrefix + 'feature/ekv_12-08/index.html','browserTitle==Missile Systems EKV','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
g_navNode_9_65=g_navNode_9.addNode('2385','Lynn Dugle to Lead Raytheon IIS Upon Retirement of Michael Keebaugh',ssUrlPrefix + 'feature/rtn08_120802/index.html','hideLeft==true','showNav==true','showSideBar==true');
g_navNode_9_67=g_navNode_9.addNode('2411','Raytheon Delivers 300th RAID Tower to U.S. Army ',ssUrlPrefix + 'feature/rtn08_raid300/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_68=g_navNode_9.addNode('2413','Thank You for Making a Difference',ssUrlPrefix + 'feature/rtn08_phil01/index.html','graphicOnly==false','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_69=g_navNode_9.addNode('2414','Raytheon Named Rhode Island\'s Innovative Manufacturer of the Year',ssUrlPrefix + 'feature/rtn08_rhodeisl/index.html','contributorOnly==false','graphicOnly==false','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_70=g_navNode_9.addNode('2415','US Navy conducts third test of Raytheon\u2019s Standard Missile-6',ssUrlPrefix + 'feature/sm6_02-09/index.html','browserTitle==Missile Systems Standard Missile-6','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
g_navNode_9_72=g_navNode_9.addNode('2423','Mass Conference for Women',ssUrlPrefix + 'feature/rtn08_maconfwm/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_73=g_navNode_9.addNode('2425','U.S. Navy/Air Force test fires first Raytheon AIM-9X Block II missile',ssUrlPrefix + 'feature/aim9x_blk_II_12-08/index.html','browserTitle==Missile Systems AIM-9X Block II','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
g_navNode_9_75=g_navNode_9.addNode('2431','Raytheon Opens Orlando Building to Support Warfighter FOCUS Program Management',ssUrlPrefix + 'feature/orlandowarfighter/index.html','contributorOnly==false','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==170');
g_navNode_9_75_0=g_navNode_9_75.addNode('2434','Gallery',ssUrlPrefix + 'feature/orlandowarfighter/gallery/index.html','contributorOnly==false','hideLeft==true');
g_navNode_9_76=g_navNode_9.addNode('2435','MathMovesU in 2008',ssUrlPrefix + 'feature/rtn08_corpphil3/index.html','graphicOnly==false','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_77=g_navNode_9.addNode('2449','CMMI Level 5',ssUrlPrefix + 'feature/rtn09_cmmilvl5/index.html','graphicOnly==false','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_78=g_navNode_9.addNode('2450','Dear Mr. President-Elect',ssUrlPrefix + 'feature/rtn09_preselect/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_79=g_navNode_9.addNode('2460','Raytheon to Launch \u201cThe Sum of All Thrills\u201d at Epcot in 2009',ssUrlPrefix + 'feature/rtn09_disney/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_80=g_navNode_9.addNode('2472','Aviation Week Recognizes Raytheon With Two 2008 Program Excellence Awards',ssUrlPrefix + 'feature/rtn09_avwkawrd/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_81=g_navNode_9.addNode('2474','AMRAAM Reliability',ssUrlPrefix + 'feature/amraam_01-22-09/index.html','browserTitle==Missile Systems  AMRAAM','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
g_navNode_9_82=g_navNode_9.addNode('2475','Raytheon\'s Successful 2008 MathMovesU Initiative',ssUrlPrefix + 'feature/rtn09_mmures/index.html','hideLeft==true','showNav==true','showSideBar==true');
g_navNode_9_83=g_navNode_9.addNode('2481','Thirty-Two Teachers Across the U.S. Declared Math Heroes by Raytheon',ssUrlPrefix + 'feature/rtn09_mmu_heroes/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_84=g_navNode_9.addNode('2535','Aero India 2009',ssUrlPrefix + 'feature/rtn09_aeroindia/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==false','showSideBar==true','showTopPage==true','sideBarWidth==200');
g_navNode_9_84_0=g_navNode_9_84.addNode('2544','Aero India Air Show 2009',ssUrlPrefix + 'feature/rtn09_aeroindia/aeroindia/index.html','refreshUrl==/newsroom/feature/rtn09_aeroindia/index.html');
g_navNode_9_84_1=g_navNode_9_84.addNode('2543','Advertising',ssUrlPrefix + 'feature/rtn09_aeroindia/ads/index.htm','navStartLevel==3','showNav==true');
g_navNode_9_85=g_navNode_9.addNode('2536','Raytheon Celebrates National Engineers Week 2009',ssUrlPrefix + 'feature/rtn09_engwk/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_86=g_navNode_9.addNode('2552','Raytheon Celebrates Grand Opening of Family Technology Center at The Shades of Green\xae on Walt Disney World\xae ',ssUrlPrefix + 'feature/rtn09_shdgreen/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_87=g_navNode_9.addNode('2559','Raytheon Hosting Employment Open Houses ',ssUrlPrefix + 'feature/rtn09_empopnhs/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_88=g_navNode_9.addNode('2570','Raytheon Completes Delivery of ASTOR System to U.K. Customer',ssUrlPrefix + 'feature/rtn09_astorhnoff/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_89=g_navNode_9.addNode('2571','Engineers Week MMU',ssUrlPrefix + 'feature/rtn09_engwkmmu/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_90=g_navNode_9.addNode('2572','Young Raytheon Engineers Recognized by National Engineers Week Foundation',ssUrlPrefix + 'feature/rtn09_engwkyng/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_91=g_navNode_9.addNode('2573','Engineers Week EPCOT',ssUrlPrefix + 'feature/rtn09_engwkepcot/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_92=g_navNode_9.addNode('2574','Engineers Week\x3a Round up of businesses',ssUrlPrefix + 'feature/rtn09_engwkbusnss/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_93=g_navNode_9.addNode('2591','New inertial measurement unit gives Raytheon\u2019s Excalibur Ia increased reliability',ssUrlPrefix + 'feature/excalibur_02-09/index.html','browserTitle==Excalibur','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','sideBarWidth==181');
g_navNode_9_98=g_navNode_9.addNode('2648','Glory APS',ssUrlPrefix + 'feature/rtn09_gaps/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_99=g_navNode_9.addNode('2663','New Issue of Technology Today - Now Available',ssUrlPrefix + 'feature/rtn09_tti1/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_101=g_navNode_9.addNode('2689','Swanson Q\x26A',ssUrlPrefix + 'feature/rtn09_billqa/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_102=g_navNode_9.addNode('2692','U.S. Air Force accepts first delivery of Raytheon Miniature Air Launched Decoy',ssUrlPrefix + 'feature/mald_03-09/index.html','browserTitle==Missile Systems MALD','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','sideBarWidth==181');
g_navNode_9_102_0=g_navNode_9_102.addNode('2693','news',ssUrlPrefix + 'feature/mald_03-09/news/index.html','browserTitle==Missile Systems MALD','graphicOnly==true','showNav==true','showSideBar==false','sideBarWidth==181');
g_navNode_9_102_1=g_navNode_9_102.addNode('2720','photos',ssUrlPrefix + 'feature/mald_03-09/photos/index.html','browserTitle==Missile Systems MALD','graphicOnly==true','hideLeft==true','showNav==true');
g_navNode_9_103=g_navNode_9.addNode('2726','Standard Missile-3 Provides Sea-based Missile Defense ',ssUrlPrefix + 'feature/sm3_03-09/index.html','browserTitle==Standard Missile-3','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','sideBarWidth==181');
g_navNode_9_103_0=g_navNode_9_103.addNode('2727','photos',ssUrlPrefix + 'feature/sm3_03-09/photos/index.html','browserTitle==Standard Missile-3','graphicOnly==true','hideLeft==true','showNav==true');
g_navNode_9_104=g_navNode_9.addNode('2763','Raytheon Offers College Graduates Exciting Career Opportunities ',ssUrlPrefix + 'feature/rtn09_cllgopp/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_106=g_navNode_9.addNode('2767','National Math Month',ssUrlPrefix + 'feature/rtn09_nmm/index.html','hideLeft==true','showNav==true','showSideBar==true','sideBarWidth==200');
g_navNode_9_107=g_navNode_9.addNode('2783','Raytheon Sustainability',ssUrlPrefix + 'feature/rtn09_sustnlnch/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==false','showTopPage==true');
g_navNode_9_108=g_navNode_9.addNode('2784','Raytheon Selected for InfoWorld Green 15 Award',ssUrlPrefix + 'feature/rtn09_infoworld/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_109=g_navNode_9.addNode('2796','Raytheon Kicks Off Math Awareness Month by Awarding Middle School Scholarships and Grants',ssUrlPrefix + 'feature/rtn09_mathsch/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
g_navNode_9_110=g_navNode_9.addNode('2828','New Issue of Defender Now Available',ssUrlPrefix + 'feature/rtn09_dfndr_vol5/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_111=g_navNode_9.addNode('2830','EPA',ssUrlPrefix + 'feature/rtn09_epa/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_112=g_navNode_9.addNode('2894','Raytheon Sponsors FIRST Robotics Championship',ssUrlPrefix + 'feature/rtn09_firstspnsr/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_113=g_navNode_9.addNode('2920','Raytheon Revamps MathMovesU Advertisements',ssUrlPrefix + 'feature/rtn09_mmuads/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_114=g_navNode_9.addNode('2934','Raytheon IDS\u2019 Athena System Provides Situational Awareness for Port of Providence ',ssUrlPrefix + 'feature/rtn09_ptprov/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_115=g_navNode_9.addNode('2939','William H. Swanson Presented with the 2009 Leatherneck Award ',ssUrlPrefix + 'feature/rtn09_leatherneck_awd/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_116=g_navNode_9.addNode('2942','Raytheon and the New England Patriots Encourage Youth to Find the Science in Sports ',ssUrlPrefix + 'feature/scienceofsports/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_117=g_navNode_9.addNode('2948','Raytheon develops plan to turn Tomahawk into a \u201cship killer\u201d',ssUrlPrefix + 'feature/tomahawk_05-09/index.html','browserTitle==Tomahawk Roadmap','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
g_navNode_9_118=g_navNode_9.addNode('2959','Math Whizzes Compete for Top Spot at the Raytheon MATHCOUNTS Competition ',ssUrlPrefix + 'feature/rtn09_mthcntscomp/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_119=g_navNode_9.addNode('2971','Raytheon 2008 Annual Report Puts the Spotlight on Innovation',ssUrlPrefix + 'feature/rtn09_annrprt/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_120=g_navNode_9.addNode('2982','Swine Flu',ssUrlPrefix + 'feature/rtn09_swine_flu/index.html','graphicOnly==false','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_122=g_navNode_9.addNode('2991','Raytheon Supports 22nd Annual Catalyst Awards',ssUrlPrefix + 'feature/rtn09_catalyst/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_123=g_navNode_9.addNode('2992','Raytheon Employees Volunteer at 2009 National American Indian Science and Engineering Fair ',ssUrlPrefix + 'feature/rtn09_naisef/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_125=g_navNode_9.addNode('3058','Raytheon Board Member Skates Named Director of the Year',ssUrlPrefix + 'feature/rtn09_nacd/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_126=g_navNode_9.addNode('3067','Focus on the customer leads to innovative training solution',ssUrlPrefix + 'feature/rtn09_ftbragg/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_127=g_navNode_9.addNode('3072','Raytheon\'s ARTEMIS Sensor Collects First Hyperspectral Images Aboard TacSat-3',ssUrlPrefix + 'feature/rtn09_tacsat3/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_128=g_navNode_9.addNode('3073','Doran Named to U.S.-India Business Council Board of Directors',ssUrlPrefix + 'feature/rtn09_doran/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==false','showTopPage==true');
g_navNode_9_129=g_navNode_9.addNode('3074','Yuse on Training in Jane\'s Defence Weekly',ssUrlPrefix + 'feature/rtn09_yusejdw/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_130=g_navNode_9.addNode('3078','NASA Cassini Web site Wins Webby Award',ssUrlPrefix + 'feature/rtn09_webby/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_131=g_navNode_9.addNode('3100','Raytheon Donates to Fisher House Boston',ssUrlPrefix + 'feature/fisher-house/index.html','hideLeft==true','showNav==true','showSideBar==true');
g_navNode_9_133=g_navNode_9.addNode('3109','TARC Competition',ssUrlPrefix + 'feature/rtn09_tarccomp/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_134=g_navNode_9.addNode('3125','Raytheon Six Sigma Plays Lead Role in U.K. Training Contract',ssUrlPrefix + 'feature/rtn09_rtscr6s/index.html','hideLeft==true','showNav==true','showTopPage==true');
g_navNode_9_135=g_navNode_9.addNode('3127','Swanson Addresses Future Engineering Leaders at MIT',ssUrlPrefix + 'feature/rtn09_mit/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_136=g_navNode_9.addNode('3129','SI Gov Wins AF Hacker Contest',ssUrlPrefix + 'feature/rtn09_afhacker/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_137=g_navNode_9.addNode('3135','Raytheon Releases 2008 Corporate Responsibility Report',ssUrlPrefix + 'feature/rtn09_crr/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_138=g_navNode_9.addNode('3141','Raytheon Establishes Math and Science Scholarship at Gordon College in Honor of Former Chairman and CEO Thomas L. Phillips',ssUrlPrefix + 'feature/rtn09_whs_gordon/index.html','graphicOnly==false','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_139=g_navNode_9.addNode('3142','Raytheon Cyber Warriors Fight the Digital Cyberwar',ssUrlPrefix + 'feature/rtn09_nyt/index.html','hideLeft==true','showNav==true','showSideBar==true');
g_navNode_9_140=g_navNode_9.addNode('3146','Raytheon Named One of CIO Magazine\u2019s Top 100',ssUrlPrefix + 'feature/rtn09_cio100/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_141=g_navNode_9.addNode('3151','Raytheon \x238 on DiversityBusiness.com\u2019s Top 50',ssUrlPrefix + 'feature/rtn09_div50/index.html','hideLeft==true','showNav==true','showSideBar==true');
g_navNode_9_142=g_navNode_9.addNode('3154','AIM-9X Lot 9 Contract Award',ssUrlPrefix + 'feature/aim9x_06-09/index.html','browserTitle==Raytheon Missile Systems AIM-9X Lot 9 Contract Award','graphicOnly==true','hideLeft==true','navNumLevels==2','showNav==true','showSideBar==true','sideBarWidth==181');
g_navNode_9_143=g_navNode_9.addNode('3200','RACR Ready for Production Orders',ssUrlPrefix + 'feature/rtn09_racr/index.html','contributorOnly==false','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_144=g_navNode_9.addNode('3206','Computerworld 2009 Best Places to Work in IT',ssUrlPrefix + 'feature/rtn09_100bstwrk/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_145=g_navNode_9.addNode('3216','Diversity/Careers Best Diversity Company',ssUrlPrefix + 'feature/rtn09_divcreer/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_146=g_navNode_9.addNode('3218','C4ISR Features Lynn Dugle Interview and Quote from Mark Bigham',ssUrlPrefix + 'feature/c4isr_features_0609/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==198');
g_navNode_9_148=g_navNode_9.addNode('3221','DOJ Honors Raytheon Information Solutions',ssUrlPrefix + 'feature/doj_honors/index.html','contributorOnly==false','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==198');
g_navNode_9_149=g_navNode_9.addNode('3233','Raytheon Continues NCADE Development',ssUrlPrefix + 'feature/ncade_07-09/index.html','browserTitle==Raytheon Continues NCADE Development','graphicOnly==true','hideLeft==true','navNumLevels==2','showNav==true','showSideBar==true','sideBarWidth==181');
g_navNode_9_149_0=g_navNode_9_149.addNode('3234','media',ssUrlPrefix + 'feature/ncade_07-09/media/index.html','browserTitle==Raytheon Continues NCADE Development','hideLeft==true','navNumLevels==2','showNav==true');
g_navNode_9_149_1=g_navNode_9_149.addNode('3236','press',ssUrlPrefix + 'feature/ncade_07-09/press/index.html','browserTitle==Raytheon Continues NCADE Development','hideLeft==true','navNumLevels==2','showNav==true');
g_navNode_9_150=g_navNode_9.addNode('3258','Raytheon Recognized by National Business Group on Health for Promoting Healthy Lifestyles for Its Employees',ssUrlPrefix + 'feature/rtn09_natbsnsshealth/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_151=g_navNode_9.addNode('3259','Raytheon Receives Industry Award for Energy Innovation',ssUrlPrefix + 'feature/rtn09_enrgyawd/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_152=g_navNode_9.addNode('3293','EPA Recognizes Raytheon for Achieving Greenhouse Gas Reduction Goal',ssUrlPrefix + 'feature/rtn09_eparec/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_153=g_navNode_9.addNode('3298','GPS World Names Fullerton Employee As \'Top 50 GNSS Leaders to Watch\'',ssUrlPrefix + 'feature/rtn09_gpswld50/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_155=g_navNode_9.addNode('3300','Raytheon Standard Missile-3 achieves 15th hit-to-kill intercept in space',ssUrlPrefix + 'feature/sm3_07-09/index.html','browserTitle==Raytheon Standard Missile-3','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
g_navNode_9_155_0=g_navNode_9_155.addNode('3312','video',ssUrlPrefix + 'feature/sm3_07-09/video/index.html','browserTitle==Raytheon Standard Missile-3','hideLeft==true','showNav==true','showTopPage==true');
g_navNode_9_156=g_navNode_9.addNode('3306','President Obama Hosts MATHCOUNTS\xae Finalists',ssUrlPrefix + 'feature/rtn09_mthcnts_obama/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_157=g_navNode_9.addNode('3307','SM-3 Story',ssUrlPrefix + 'feature/rtn09_sm_3/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_158=g_navNode_9.addNode('3315','Raytheon Technology to Help Pave Way for Man\u2019s Next Journey to Moon',ssUrlPrefix + 'feature/rtn09_minrf/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_159=g_navNode_9.addNode('3323','A More Sophisticated IED Threat Remains Top Focus for Raytheon Task Force ',ssUrlPrefix + 'feature/rtn09_iedthrt/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_160=g_navNode_9.addNode('3326','IT Solutions to Support EPA\u2019s Environmental Mission',ssUrlPrefix + 'feature/rnt09_epa_envmission/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==198');
g_navNode_9_161=g_navNode_9.addNode('3324','2009 Space and Missile Defense Conference and Exhibition ',ssUrlPrefix + 'feature/smd09/index.html','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==225');
g_navNode_9_161_0=g_navNode_9_161.addNode('3325','Space and Missile Defense Conference Home',ssUrlPrefix + 'feature/smd09/rtn09_smd/index.html','hideLeft==true','refreshUrl==/newsroom/technology/smd09','showNav==true','showTopPage==true');
g_navNode_9_161_1=g_navNode_9_161.addNode('3327','Raytheon Bringing Standard Missile-3 Ashore',ssUrlPrefix + 'feature/smd09/sm3_land/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_161_7=g_navNode_9_161.addNode('3333','Raytheon Develops World\'s Largest Infrared Light-Wave Detector',ssUrlPrefix + 'feature/smd09/infrared/index.html','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_161_9=g_navNode_9_161.addNode('3335','JLENS Prepares for First Flight Demonstration',ssUrlPrefix + 'feature/smd09/jlens/index.html','hideLeft==true','navStartLevel==2','showNav==false','showSideBar==true','showTopPage==true');
g_navNode_9_161_10=g_navNode_9_161.addNode('3359','News Features',ssUrlPrefix + 'feature/smd09/news/index.html','hideLeft==true','showTopPage==true');
g_navNode_9_162=g_navNode_9.addNode('3338','EPA',ssUrlPrefix + 'feature/rtn09_epa2/index.html','graphicOnly==true','hideLeft==true','refreshUrl==http\x3a//www.raytheon.com/newsroom/feature/rnt09_epa_envmission/index.html','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_163=g_navNode_9.addNode('3371','Raytheon Delivers 1,000th Evolved SeaSparrow Missile \x28ESSM\x29',ssUrlPrefix + 'feature/essm_08-09/index.html','browserTitle==Raytheon ESSM','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
g_navNode_9_163_0=g_navNode_9_163.addNode('3372','gallery',ssUrlPrefix + 'feature/essm_08-09/gallery/index.html','browserTitle==Raytheon ESSM','hideLeft==true','showNav==true','showTopPage==true');
g_navNode_9_163_1=g_navNode_9_163.addNode('3373','camden',ssUrlPrefix + 'feature/essm_08-09/camden/index.html','browserTitle==Raytheon ESSM','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
g_navNode_9_163_2=g_navNode_9_163.addNode('3390','video',ssUrlPrefix + 'feature/essm_08-09/video/index.html','browserTitle==Raytheon ESSM','graphicOnly==true','hideLeft==true','showNav==true','showTopPage==true');
g_navNode_9_164=g_navNode_9.addNode('3385','Raytheon Exhibits at Brunei International Defense Exhibition',ssUrlPrefix + 'feature/brunei/index.html','graphicOnly==false','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_166=g_navNode_9.addNode('3392','Rebecca Rhoads on CNBC/Green IT',ssUrlPrefix + 'feature/rtn09_rhoadscnbc/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_167=g_navNode_9.addNode('3394','Raytheon Announces Agreement to Purchase BBN Technologies',ssUrlPrefix + 'feature/rtn09_bbn/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_169=g_navNode_9.addNode('3418','Raytheon\'s Math \x26 Science Teacher Intern Featured on CNN',ssUrlPrefix + 'feature/intern_09-09/index.html','browserTitle==Raytheon Teacher Intern Program','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
g_navNode_9_169_3=g_navNode_9_169.addNode('3422','video',ssUrlPrefix + 'feature/intern_09-09/video/index.html','browserTitle==Raytheon Teacher Intern Program ','graphicOnly==true','hideLeft==true','showNav==true','showTopPage==true');
g_navNode_9_170=g_navNode_9.addNode('3453','Raytheon\'s Lee Silvestre and Mission Innovation Team Profiled in Women\'s Business News',ssUrlPrefix + 'feature/rtn09_lees_wbm/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_171=g_navNode_9.addNode('3461','Raytheon Ranks Among the Top 25 Best Places to Launch a Career',ssUrlPrefix + 'feature/rtn09_top25career/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_172=g_navNode_9.addNode('3470','Raytheon\'s High-Speed Guard is Industry\'s Fastest Cross-Domain Sharing Solution',ssUrlPrefix + 'feature/rtn09_highspeedguard/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_173=g_navNode_9.addNode('3471','DISA Chooses Raytheon\'s Insider Threat Management Solution',ssUrlPrefix + 'feature/rtn09_intfot/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_174=g_navNode_9.addNode('3474','Raytheon\'s \'Green IT\' Initiative Featured on CNBC',ssUrlPrefix + 'feature/rtn09_greenit/index.html','hideLeft==true','showNav==true','showSideBar==false');
g_navNode_9_175=g_navNode_9.addNode('3480','Raytheon Celebrates National Aerospace Day',ssUrlPrefix + 'feature/rtn09_ntaeroday/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_176=g_navNode_9.addNode('3481','Raytheon EKV intercepts target ballistic missile in space',ssUrlPrefix + 'feature/ekv_09-09/index.html','browserTitle==Raytheon EKV','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
g_navNode_9_176_0=g_navNode_9_176.addNode('3482','gallery',ssUrlPrefix + 'feature/ekv_09-09/gallery/index.html','browserTitle==Raytheon EKV','graphicOnly==true','hideLeft==true','showNav==true','showTopPage==true');
g_navNode_9_177=g_navNode_9.addNode('3495','Raytheon Again Achieves 100 Percent  on Corporate Equality Index',ssUrlPrefix + 'feature/rtn09_100pctcei/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_178=g_navNode_9.addNode('3499','Technical Services Makes Top Simulation and Training Companies List',ssUrlPrefix + 'feature/rtn09_tslist/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_182=g_navNode_9.addNode('3527','It All Adds Up\x21 Raytheon\u2019s \'Sum of all Thrills\' Experience Opens Today',ssUrlPrefix + 'feature/rtn09_soat-rc/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_183=g_navNode_9.addNode('3534','Raytheon Celebrates Energy Awareness Month',ssUrlPrefix + 'feature/rtn09_engyawrnssmnth/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_184=g_navNode_9.addNode('3607','Japan achieves second ballistic missile intercept using Raytheon Standard Missile-3',ssUrlPrefix + 'feature/sm3_10-09/index.html','browserTitle==Raytheon Missile Systems SM-3','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
g_navNode_9_184_0=g_navNode_9_184.addNode('3633','video',ssUrlPrefix + 'feature/sm3_10-09/video/index.html','browserTitle==Raytheon Missile Systems SM-3','graphicOnly==true','hideLeft==true','showNav==true','showTopPage==true');
g_navNode_9_185=g_navNode_9.addNode('3612','Seoul Air Show',ssUrlPrefix + 'feature/seoulairshow09/index.html','contributorOnly==false','graphicOnly==true','hideLeft==true','showNav==true','showTopPage==true');
g_navNode_9_186=g_navNode_9.addNode('3645','Raytheon completes free flight of Joint Standoff Weapon Extended ',ssUrlPrefix + 'feature/jsow_er_11-09/index.html','browserTitle==Raytheon Missile Systems JSOW-ER','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
g_navNode_9_187=g_navNode_9.addNode('3646','Raytheon Completes Acquisition of BBN Technologies',ssUrlPrefix + 'feature/rtn09_bbntech/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_188=g_navNode_9.addNode('3648','Raytheon Leaders Featured in \'Aviation Week \x26 Space Technology\' Special Issue on Innovation',ssUrlPrefix + 'feature/rtn09_whs_aw/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_189=g_navNode_9.addNode('3649','John Harris Receives Top BEYA Award',ssUrlPrefix + 'feature/rtn09_beya_jh/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_190=g_navNode_9.addNode('3656','FBI N-DEx Program Wins GCN Agency Award',ssUrlPrefix + 'feature/rtn09_gcnaward/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_191=g_navNode_9.addNode('3657','Raytheon Showcases its 2009 Space Successes at Strategic Space Symposium',ssUrlPrefix + 'feature/rtn09_strtspcsymp/index.html','graphicOnly==false','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_193=g_navNode_9.addNode('3685','Brian Arnold Participates on Industry Panel at Strategic Space Symposium',ssUrlPrefix + 'feature/rtn09_sss02/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_194=g_navNode_9.addNode('3693','Raytheon Named Fellow of the AMS',ssUrlPrefix + 'feature/rtn09_amsfellow/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_196=g_navNode_9.addNode('3696','2009 Excellence in Partnership Award',ssUrlPrefix + 'feature/rtn09_epaward/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_197=g_navNode_9.addNode('3721','Global ISR and AESA Solutions Featured at Dubai Air Show',ssUrlPrefix + 'feature/dubaiairshow09/index.html','contributorOnly==false','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10=g_navNode_Root.addNode('539','Technology \x26 Innovation',ssUrlPrefix + 'technology/index.html','archiveQuery==xEffectiveDate \x3e\x3d \x6001/01/2007\x60  \x3cAND\x3e  xEffectiveDate \x3c \x6012/31/2007\x60','contributorOnly==false','graphicOnly==true','rssTitle==Technology \x26 Innovation Library','rssUrl==http\x3a//www.raytheon.com/rss/innovation/main.rss','showNav==TRUE','showTopPage==false');
g_navNode_10_0=g_navNode_10.addNode('2458','2009 Archive',ssUrlPrefix + 'technology/archive/index.html','browserTitle==Technology and Innovation Features Archive','rssTitle==Technology \x26 Innovation Features','rssUrl==http\x3a//www.raytheon.com/rss/technology/main.rss','showNav==true','showTopPage==true');
g_navNode_10_1=g_navNode_10.addNode('807','2008 Archive',ssUrlPrefix + 'technology/archive08/index.html','hideLeft==FALSE','showNav==TRUE','showTopPage==TRUE');
g_navNode_10_2=g_navNode_10.addNode('2446','2007 Archive',ssUrlPrefix + 'technology/archive07/index.html','showNav==true','showTopPage==true');
g_navNode_10_4=g_navNode_10.addNode('554','Raytheon Employees Try Hand at F-22 Flight Demonstrator',ssUrlPrefix + 'technology/rtn08_sas_f22/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_5=g_navNode_10.addNode('542','National Space Symposium 2008',ssUrlPrefix + 'technology/rtn08_nss/index.html','graphicOnly==true','hideLeft==true','showNav==false','showSideBar==true','showTopPage==true','sideBarWidth==200');
g_navNode_10_6=g_navNode_10.addNode('679','Army Aviation Association of America Convention',ssUrlPrefix + 'technology/rtn08_aaaa/index.html','graphicOnly==true','hideLeft==TRUE','showNav==false','showSideBar==true','showTopPage==true','sideBarWidth==225');
g_navNode_10_7=g_navNode_10.addNode('842','New Issue of Technology Today \u2013 Now Available',ssUrlPrefix + 'technology/rtn08_tt_issue1/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_8=g_navNode_10.addNode('858','The Exoskeleton\x3a Advanced Robotics',ssUrlPrefix + 'technology/rtn08_exoskeleton/index.html','hideLeft==TRUE','showNav==true','showSideBar==true','showTopPage==false','sideBarWidth==180');
g_navNode_10_9=g_navNode_10.addNode('943','x2\x3a Ironman',ssUrlPrefix + 'technology/rtn08_x2_iron/index.html','hideLeft==TRUE','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==210');
g_navNode_10_10=g_navNode_10.addNode('976','Patriot System Moves into the International Arena',ssUrlPrefix + 'technology/rtn08_intl_patriot/index.html','hideLeft==TRUE','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_11=g_navNode_10.addNode('980','Raytheon and Cartus Win the HROA Relationship of the Year Award',ssUrlPrefix + 'technology/rtn08_hroa/index.html','hideLeft==TRUE','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12=g_navNode_10.addNode('1030','Farnborough International Air Show 2008',ssUrlPrefix + 'technology/rtn08_fas/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','refreshUrl==/newsroom/technology/rtn08_fas/rtn08_fas_home','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==250');
g_navNode_10_12_0=g_navNode_10_12.addNode('1127','Farnborough International Air Show 2008',ssUrlPrefix + 'technology/rtn08_fas/rtn08_fas_home/index.html','graphicOnly==true','hideLeft==false','navStartLevel==3','refreshUrl==/newsroom/technology/rtn08_fas','showNav==true','showSideBar==true','sideBarWidth==250');
g_navNode_10_12_1=g_navNode_10_12.addNode('1493','Core Markets',ssUrlPrefix + 'technology/rtn08_fas/markets/index.html','navStartLevel==3','showNav==true','showSideBar==false','showTopPage==true','sideBarWidth==250');
g_navNode_10_12_2=g_navNode_10_12.addNode('1133','Highlighted Technologies',ssUrlPrefix + 'technology/rtn08_fas/technologies/index.html','navStartLevel==3','showNav==true','showSideBar==false','sideBarWidth==250');
g_navNode_10_12_3=g_navNode_10_12.addNode('1135','Chalet Information',ssUrlPrefix + 'technology/rtn08_fas/chalet/index.html','navStartLevel==3','showNav==true','showSideBar==true','sideBarWidth==200');
g_navNode_10_12_4=g_navNode_10_12.addNode('1567','Media Briefings',ssUrlPrefix + 'technology/rtn08_fas/events/index.html','navStartLevel==3','showNav==true');
g_navNode_10_12_5=g_navNode_10_12.addNode('1134','Advertising',ssUrlPrefix + 'technology/rtn08_fas/ads/index.html','navStartLevel==3','showNav==true','showSideBar==false','sideBarWidth==200');
g_navNode_10_12_6=g_navNode_10_12.addNode('1031','Newsroom',ssUrlPrefix + 'technology/rtn08_fas/news/index.html','hideLeft==false','navNumLevels==4','navStartLevel==3','showNav==true','showSideBar==false','showTopPage==true','sideBarWidth==200');
g_navNode_10_12_6_0=g_navNode_10_12_6.addNode('1090','Highlights Archive',ssUrlPrefix + 'technology/rtn08_fas/news/archive/index.html','graphicOnly==true','hideLeft==false','navNumLevels==2','navStartLevel==3','showNav==true','showTopPage==true');
g_navNode_10_12_6_1=g_navNode_10_12_6.addNode('1574','Story 01',ssUrlPrefix + 'technology/rtn08_fas/news/fas01/index.html','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12_6_2=g_navNode_10_12_6.addNode('1591','Raytheon In the News',ssUrlPrefix + 'technology/rtn08_fas/news/fas02/index.html','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==false','showTopPage==true');
g_navNode_10_12_6_3=g_navNode_10_12_6.addNode('1592','ASTOR Milestones',ssUrlPrefix + 'technology/rtn08_fas/news/fas03/index.html','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12_6_4=g_navNode_10_12_6.addNode('1593','Raytheon Delivers on Directed Energy',ssUrlPrefix + 'technology/rtn08_fas/news/fas04/index.html','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12_6_5=g_navNode_10_12_6.addNode('1594','Media Cruise',ssUrlPrefix + 'technology/rtn08_fas/news/fas05/index.html','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12_6_6=g_navNode_10_12_6.addNode('1596','Raytheon Standard Missile-2 intercept demonstrates capability',ssUrlPrefix + 'technology/rtn08_fas/news/fas06/index.html','contributorOnly==false','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12_6_7=g_navNode_10_12_6.addNode('1597','Raytheon Readies First P-8A Poseidon Radar for Test and Integration',ssUrlPrefix + 'technology/rtn08_fas/news/fas07/index.html','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12_6_8=g_navNode_10_12_6.addNode('1598','Tomahawk Block IV - Shaping the Battlespace',ssUrlPrefix + 'technology/rtn08_fas/news/fas08/index.html','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12_6_9=g_navNode_10_12_6.addNode('1599','Raytheon and U.K. Ministry of Defence Announce ASTOR Milestones',ssUrlPrefix + 'technology/rtn08_fas/news/fas09/index.html','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12_6_10=g_navNode_10_12_6.addNode('1624','UAV Feature',ssUrlPrefix + 'technology/rtn08_fas/news/fas10/index.html','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12_6_11=g_navNode_10_12_6.addNode('1628','Resurgent Patriot Featured at Farnborough',ssUrlPrefix + 'technology/rtn08_fas/news/fas11/index.html','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12_6_12=g_navNode_10_12_6.addNode('1638','Mission Systems Integration',ssUrlPrefix + 'technology/rtn08_fas/news/ms_integration/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12_6_13=g_navNode_10_12_6.addNode('1637','Prince Edward, Duke of Kent Visits ASTOR',ssUrlPrefix + 'technology/rtn08_fas/news/duke_kent/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12_6_14=g_navNode_10_12_6.addNode('1639','Patriot Briefing',ssUrlPrefix + 'technology/rtn08_fas/news/partiot_briefing/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12_6_15=g_navNode_10_12_6.addNode('1640','Training',ssUrlPrefix + 'technology/rtn08_fas/news/training/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12_6_16=g_navNode_10_12_6.addNode('1641','Duke of York Visit',ssUrlPrefix + 'technology/rtn08_fas/news/duke_york/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12_6_17=g_navNode_10_12_6.addNode('1631','AIA Reception',ssUrlPrefix + 'technology/rtn08_fas/news/aia_reception/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12_6_18=g_navNode_10_12_6.addNode('1632','Youth Day',ssUrlPrefix + 'technology/rtn08_fas/news/youth_day/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12_6_19=g_navNode_10_12_6.addNode('1633','Raytheon Leads Team Bidding on Indian Satellite-Based Navigation System',ssUrlPrefix + 'technology/rtn08_fas/news/gagan/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12_6_20=g_navNode_10_12_6.addNode('1634','Raytheon Leading Team to Evaluate Impact of New Classes of Aircraft for NASA',ssUrlPrefix + 'technology/rtn08_fas/news/nasa_aircraft/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12_6_21=g_navNode_10_12_6.addNode('1635','TARC Rocketry Challenge',ssUrlPrefix + 'technology/rtn08_fas/news/tarc_challenge/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12_6_22=g_navNode_10_12_6.addNode('1636','U.K. School Presnce',ssUrlPrefix + 'technology/rtn08_fas/news/uk_school/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12_6_23=g_navNode_10_12_6.addNode('1642','RACR',ssUrlPrefix + 'technology/rtn08_fas/news/racr/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
g_navNode_10_12_6_24=g_navNode_10_12_6.addNode('1644','Raytheon Features Global Training Solutions at Farnborough Air Show',ssUrlPrefix + 'technology/rtn08_fas/news/fas12/index.html','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12_6_25=g_navNode_10_12_6.addNode('1649','International Orders for Raytheon Targeting Pod Highlighted at Air Show',ssUrlPrefix + 'technology/rtn08_fas/news/fas13/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_12_6_26=g_navNode_10_12_6.addNode('1653','In The News, July 16',ssUrlPrefix + 'technology/rtn08_fas/news/itn16/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showTopPage==true');
g_navNode_10_12_6_27=g_navNode_10_12_6.addNode('1654','In The News, July 15',ssUrlPrefix + 'technology/rtn08_fas/news/itn15/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showTopPage==true');
g_navNode_10_12_6_28=g_navNode_10_12_6.addNode('1655','In The News, July 13 and 14',ssUrlPrefix + 'technology/rtn08_fas/news/itn14/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showTopPage==true');
g_navNode_10_13=g_navNode_10.addNode('1035','Raytheon and MMU Honored by Associated Industries of Massachusetts \x28AIM\x29',ssUrlPrefix + 'technology/rtn08_swanson_mmu/index.html','graphicOnly==true','hideLeft==TRUE','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_14=g_navNode_10.addNode('1044','Raytheon Talent Acquisition and Talent Management Efforts Recognized by Diversity Edge Magazine',ssUrlPrefix + 'technology/rtn08_talent_acquisition/index.html','hideLeft==TRUE','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_15=g_navNode_10.addNode('1088','Globe 100',ssUrlPrefix + 'technology/rtn08_globe_100/index.html','hideLeft==TRUE','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_16=g_navNode_10.addNode('1091','John Harris speaks at Small Business Week',ssUrlPrefix + 'technology/rtn08_harris_sbw/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_17=g_navNode_10.addNode('1123','Louise Young Featured in SWE Magazine',ssUrlPrefix + 'technology/rtn08_young_swe/index.html','hideLeft==TRUE','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_18=g_navNode_10.addNode('1150','Raytheon Sponsors Student Rocket Competition',ssUrlPrefix + 'technology/rtn08_tarc/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_19=g_navNode_10.addNode('1203','Zumwalt Class of Ships',ssUrlPrefix + 'technology/rtn08_zum/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_20=g_navNode_10.addNode('1212','Raytheon Produces Active Denial and Other Directed Energy Solutions',ssUrlPrefix + 'technology/rtn08_ads/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_21=g_navNode_10.addNode('1215','Buildup to RSL 100th Birthday \x28July 9, 2008\x29',ssUrlPrefix + 'technology/rtn08_rsl_100/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_22=g_navNode_10.addNode('1349','First EA-18G, With Raytheon AESA Radar, Delivered',ssUrlPrefix + 'technology/rtn08_apg79/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_23=g_navNode_10.addNode('1352','Raytheon delivers 1,000th Tomahawk Block IV cruise missile to U.S. Navy',ssUrlPrefix + 'technology/tomahawkdelivery/index.html','contributorOnly==false','hideLeft==true','showSideBar==true');
g_navNode_10_24=g_navNode_10.addNode('1353','Raytheon Displays Products and Services at Eurosatory in Paris',ssUrlPrefix + 'technology/rtn08_euro/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
g_navNode_10_24_0=g_navNode_10_24.addNode('1436','Raytheon\u2019s Laser Area Defense System Moves Closer to Deployment',ssUrlPrefix + 'technology/rtn08_euro/rtn08_lads/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_25=g_navNode_10.addNode('1381','Raytheon Highlights Unmanned Capabilities at AUVSI Event',ssUrlPrefix + 'technology/rtn08_auvsi/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
g_navNode_10_26=g_navNode_10.addNode('1494','Technology Today, 2008 Issue 2 is Available',ssUrlPrefix + 'technology/rtn08_tti2/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_27=g_navNode_10.addNode('1575','Swanson Joins BHEF as New Vice Chair',ssUrlPrefix + 'technology/rtn08_whs_bhef/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_28=g_navNode_10.addNode('1577','Raytheon\u2019s Excalibur Chosen as a Best Invention of 2007',ssUrlPrefix + 'technology/rtn08_excaliber/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_29=g_navNode_10.addNode('1691','Technology \x26 Innovation Test2',ssUrlPrefix + 'technology/rtn08_techinn2/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_30=g_navNode_10.addNode('1742','Zumwalt Spotlight',ssUrlPrefix + 'technology/rtn08_zumspot/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_31=g_navNode_10.addNode('1859','Space and Missile Defense Conference and Exhibition',ssUrlPrefix + 'technology/rtn08_smdconf/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
g_navNode_10_31_0=g_navNode_10_31.addNode('1860','KEI Team Moves Closer to 2009 Booster Flight Test',ssUrlPrefix + 'technology/rtn08_smdconf/kei_team/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_31_1=g_navNode_10_31.addNode('1861','Raytheon Develops MKV-R',ssUrlPrefix + 'technology/rtn08_smdconf/mkv-r/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_31_2=g_navNode_10_31.addNode('1884','Raytheon Vies for Integrated Battle Command System ',ssUrlPrefix + 'technology/rtn08_smdconf/ibcs/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_32=g_navNode_10.addNode('1912','Forbes Highlights Raytheon\'s Innovation in Directed Energy ',ssUrlPrefix + 'technology/rtn07_forbes_mini/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_33=g_navNode_10.addNode('1919','2008 AUSA Annual Meeting and Exposition ',ssUrlPrefix + 'technology/rtn08_ausa/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==250');
g_navNode_10_33_0=g_navNode_10_33.addNode('1950','2008 AUSA Annual Meeting and Exposition',ssUrlPrefix + 'technology/rtn08_ausa/home/index.html','refreshUrl==/newsroom/technology/rtn08_ausa');
g_navNode_10_33_1=g_navNode_10_33.addNode('1998','Highlighted Technologies',ssUrlPrefix + 'technology/rtn08_ausa/technologies/index.html','navStartLevel==3','showNav==true','showTopPage==true');
g_navNode_10_33_2=g_navNode_10_33.addNode('1951','Media Briefings',ssUrlPrefix + 'technology/rtn08_ausa/media/index.html','navStartLevel==3','showNav==true');
g_navNode_10_33_3=g_navNode_10_33.addNode('1952','Advertising',ssUrlPrefix + 'technology/rtn08_ausa/advertising/index.html','navStartLevel==3','showNav==true');
g_navNode_10_33_4=g_navNode_10_33.addNode('2072','Virtual Tour',ssUrlPrefix + 'technology/rtn08_ausa/tour/index.html','navStartLevel==3','showNav==true');
g_navNode_10_33_5=g_navNode_10_33.addNode('1953','Newsroom',ssUrlPrefix + 'technology/rtn08_ausa/newsroom/index.html','hideLeft==false','navStartLevel==3','showNav==true','showSideBar==false');
g_navNode_10_33_5_0=g_navNode_10_33_5.addNode('2001','Highlights Archive',ssUrlPrefix + 'technology/rtn08_ausa/newsroom/archive/index.html','navStartLevel==3','showNav==true','showTopPage==true');
g_navNode_10_33_6=g_navNode_10_33.addNode('2051','Event Gallery',ssUrlPrefix + 'technology/rtn08_ausa/event_gallery/index.html','graphicOnly==false','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==false','showTopPage==false');
g_navNode_10_34=g_navNode_10.addNode('1920','MILCOM 2008 Home',ssUrlPrefix + 'technology/rtn08_milcom/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==200 ');
g_navNode_10_34_0=g_navNode_10_34.addNode('2306','MILCOM 2008 Home',ssUrlPrefix + 'technology/rtn08_milcom/milcom08/index.html','refreshUrl==/newsroom/technology/rtn08_milcom');
g_navNode_10_34_1=g_navNode_10_34.addNode('2289','Raytheon Thought Leaders',ssUrlPrefix + 'technology/rtn08_milcom/thought_leaders/index.html','graphicOnly==true','hideLeft==false','navStartLevel==3','showNav==true','showTopPage==true');
g_navNode_10_34_2=g_navNode_10_34.addNode('2290','Virtual Tour',ssUrlPrefix + 'technology/rtn08_milcom/virtual_tour/index.html','graphicOnly==true','hideLeft==false','navStartLevel==3','showNav==true','showTopPage==true');
g_navNode_10_34_3=g_navNode_10_34.addNode('2299','Newsroom',ssUrlPrefix + 'technology/rtn08_milcom/newsroom/index.html','graphicOnly==true','hideLeft==false','navStartLevel==3','showNav==true','showSideBar==false','showTopPage==true');
g_navNode_10_34_4=g_navNode_10_34.addNode('2300','Highlights Archive',ssUrlPrefix + 'technology/rtn08_milcom/highlights/index.html','graphicOnly==true','hideLeft==false','navStartLevel==3','showNav==true','showSideBar==false','showTopPage==true');
g_navNode_10_34_4_0=g_navNode_10_34_4.addNode('2301','Challenges to the Expanding Grid',ssUrlPrefix + 'technology/rtn08_milcom/highlights/rtn08_milchallenges/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_34_4_1=g_navNode_10_34_4.addNode('2302','Deep Siren Tactical Communications ',ssUrlPrefix + 'technology/rtn08_milcom/highlights/rtn08_mdstc/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_34_4_2=g_navNode_10_34_4.addNode('2292','Interview with Jerry Powlen',ssUrlPrefix + 'technology/rtn08_milcom/highlights/rtn08_milcom_powlen/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_34_4_3=g_navNode_10_34_4.addNode('2303','Global Broadcast Service',ssUrlPrefix + 'technology/rtn08_milcom/highlights/rtn08_newsgbs/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_34_4_4=g_navNode_10_34_4.addNode('2304','MILCOM luncheon speakers to be webcast live from San Diego',ssUrlPrefix + 'technology/rtn08_milcom/highlights/rtn08_mnewslunch/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_36=g_navNode_10.addNode('1947','Air \x26 Space Conference and Technology Exposition',ssUrlPrefix + 'technology/rtn08_afa/index.html','bannerData==/rtnwcm/groups/public/documents/content/rtn_afa08_xml.xml','bannerType==spotlight','graphicOnly==false','hideLeft==true','showSideBar==true','showTopPage==true','sideBarWidth==220');
g_navNode_10_36_0=g_navNode_10_36.addNode('1949','Media Briefings',ssUrlPrefix + 'technology/rtn08_afa/media/index.html','hideLeft==true','showTopPage==true');
g_navNode_10_36_1=g_navNode_10_36.addNode('1960','AIM-9X Block II Missile Reaches Milestone by Completing First Captive Carry Flight',ssUrlPrefix + 'technology/rtn08_afa/aim9x/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_10_36_2=g_navNode_10_36.addNode('1961','Raytheon Cost Cutting Drives Down Supersonic Strike Missile Price Tag to Industry Low',ssUrlPrefix + 'technology/rtn08_afa/hdam/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_10_36_3=g_navNode_10_36.addNode('1964','Raytheon Leads Team Pursuing U.S. Air Force Global Broadcast Service',ssUrlPrefix + 'technology/rtn08_afa/gbs/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_10_36_4=g_navNode_10_36.addNode('1968','F-16 Center Pedestal Display',ssUrlPrefix + 'technology/rtn08_afa/f16/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_10_36_5=g_navNode_10_36.addNode('1971','Raytheon Launches New Version of AESA Radar',ssUrlPrefix + 'technology/rtn08_afa/racr/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_10_36_6=g_navNode_10_36.addNode('1978','Unmanned Aircraft Common Ground Control System',ssUrlPrefix + 'technology/rtn08_afa/ucs/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_10_37=g_navNode_10.addNode('1970','AIAA Space Conference',ssUrlPrefix + 'technology/rtn08_aiaa/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
g_navNode_10_38=g_navNode_10.addNode('1966','Raytheon and U.S. Navy Partner Awarded for Work on ALR-67\x28V\x293 Radar Warning Receiver',ssUrlPrefix + 'technology/rtn08_perf/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_10_39=g_navNode_10.addNode('1972','APG-79 100th Delivery',ssUrlPrefix + 'technology/rtn08_apg79_100/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_40=g_navNode_10.addNode('1974','Raytheon-Led Team Wins ATCOTS Contract',ssUrlPrefix + 'technology/rtn08_atcots/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_41=g_navNode_10.addNode('1975','Impeccable Delivery Record Magnifies F/A-18 AESA Capabilities',ssUrlPrefix + 'technology/rtn08_aesadel/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_42=g_navNode_10.addNode('1976','Raytheon Team GOES-R Capabilities Featured in Space News',ssUrlPrefix + 'technology/rtn08_goes-r_space/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_43=g_navNode_10.addNode('2000','Kinetic Energy Interceptor team completes missile defense test of enhanced rocket motor',ssUrlPrefix + 'technology/keibooster/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_44=g_navNode_10.addNode('2073','Technology Today, Issue 3, Now Available',ssUrlPrefix + 'technology/rtn08_tti3/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_46=g_navNode_10.addNode('2091','Flight marks 16th consecutive test of the Tomahawk Block IV',ssUrlPrefix + 'technology/tomahawk_iv_10-08/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_47=g_navNode_10.addNode('2099','Raytheon Sensing Technology Assists in Hunt for Ice on Moon',ssUrlPrefix + 'technology/rtn08_mini-rf/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_48=g_navNode_10.addNode('2274','Raytheon GOES-R Ground Control Featured in USA Today',ssUrlPrefix + 'technology/rtn08_goesr_usatdy/index.html','graphicOnly==false','hideLeft==true','showNav==true','showSideBar==true','showTopPage==false');
g_navNode_10_49=g_navNode_10.addNode('2293','Active Protection System Among TIME\u2019s Best Inventions of 2008',ssUrlPrefix + 'technology/rtn08_active_pro/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_51=g_navNode_10.addNode('2323',' Controlled Impact Rescue Tool Among Popular Science\u2019s Best of What\'s New 2008',ssUrlPrefix + 'technology/rtn08_popscidec/index.html','graphicOnly==false','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==225');
g_navNode_10_52=g_navNode_10.addNode('2332','Kinetic Energy Interceptors team fired a powerful first-stage rocket motor',ssUrlPrefix + 'technology/kei_first_stage_11-13-08/index.html','browserTitle==Kinetic Energy Interceptor','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_53=g_navNode_10.addNode('2334','Raytheon to Modernize F-15E Radar',ssUrlPrefix + 'technology/rtn08_modf15e/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_54=g_navNode_10.addNode('2335','Raytheon Has Hand in One of TIME\u2019s Best Inventions of 2008',ssUrlPrefix + 'technology/rtn08_timeslunar/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_55=g_navNode_10.addNode('2336','Raytheon SAS\x3a A Strategic Technology Leader in L.A. Defense Industry',ssUrlPrefix + 'technology/rtn08_ladefense/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_56=g_navNode_10.addNode('2345','MALD Named Wins 2008 Aviation Week Program Excellence Award',ssUrlPrefix + 'technology/rtn08_mald_avweek/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_62=g_navNode_10.addNode('2410','Raytheon Awarded \x243.3 Billion for Patriot Sale to United Arab Emirates',ssUrlPrefix + 'technology/rtn08_patriot_uae/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_63=g_navNode_10.addNode('2457','American Meteorological Society\u2019s 89th Annual Meeting',ssUrlPrefix + 'technology/rtn09_ams/index.html','graphicOnly==false','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
g_navNode_10_64=g_navNode_10.addNode('2469','JLENS First Flight',ssUrlPrefix + 'technology/rtn09_jlensflt/index.html','graphicOnly==false','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
g_navNode_10_64_0=g_navNode_10_64.addNode('2467','JLENS First Flight Home',ssUrlPrefix + 'technology/rtn09_jlensflt/jlensflight/index.html','hideLeft==false','refreshUrl==/newsroom/technology/rtn09_jlensflt','showNav==false','showSideBar==false','showTopPage==false');
g_navNode_10_64_1=g_navNode_10_64.addNode('2468','Press Releases',ssUrlPrefix + 'technology/rtn09_jlensflt/press/index.html','graphicOnly==true','navStartLevel==3','showNav==true','showSideBar==false','showTopPage==true');
g_navNode_10_64_2=g_navNode_10_64.addNode('3316','Videos',ssUrlPrefix + 'technology/rtn09_jlensflt/videos/index.html','navStartLevel==3','showNav==true');
g_navNode_10_65=g_navNode_10.addNode('2470','Raytheon Broadcasts Super Bowl XLIII to Troops Overseas',ssUrlPrefix + 'technology/rtn09_iissb/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_66=g_navNode_10.addNode('2471','The Surface Navy Association\u2019s 21st National Symposium ',ssUrlPrefix + 'technology/rtn09_surfnavy/index.html','graphicOnly==false','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
g_navNode_10_67=g_navNode_10.addNode('2487','Raytheon Provides Solution to Wind Farm Clutter',ssUrlPrefix + 'technology/rtn09_wndfm/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_68=g_navNode_10.addNode('2488','Raytheon Awarded \x24154 Million for Taiwan Patriot Upgrade',ssUrlPrefix + 'technology/rtn09_pattaiwn/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_69=g_navNode_10.addNode('2489','U.S.Navy tests new Raytheon shaped-charge warhead',ssUrlPrefix + 'technology/jsow_01-09/index.html','browserTitle==Missile Systems JSOW','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
g_navNode_10_70=g_navNode_10.addNode('2550','ELCAN',ssUrlPrefix + 'technology/rtn09_elcan/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_71=g_navNode_10.addNode('2602','Raytheon Builds Its Commitment in the UAE and Gulf at IDEX 2009',ssUrlPrefix + 'technology/rtn09_idex/index.html','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==250');
g_navNode_10_71_0=g_navNode_10_71.addNode('2603','Raytheon Builds Its Commitment in the UAE and Gulf at IDEX 2009',ssUrlPrefix + 'technology/rtn09_idex/rtn09_idex/index.html','navStartLevel==3','refreshUrl==/newsroom/technology/rtn09_idex','showNav==true');
g_navNode_10_71_1=g_navNode_10_71.addNode('2609','Advertising',ssUrlPrefix + 'technology/rtn09_idex/advertising/index.html','navStartLevel==3','showNav==true');
g_navNode_10_71_2=g_navNode_10_71.addNode('2608','Newsroom',ssUrlPrefix + 'technology/rtn09_idex/newsroom/index.html','navStartLevel==3','showNav==true');
g_navNode_10_71_2_0=g_navNode_10_71_2.addNode('2610','Raytheon brings training focus to the Middle East ',ssUrlPrefix + 'technology/rtn09_idex/newsroom/rtn09_training/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_71_2_1=g_navNode_10_71_2.addNode('2611','Raytheon\'s Laser Guided Rocket Completes Wind Tunnel Test',ssUrlPrefix + 'technology/rtn09_idex/newsroom/rtn09_idex_laser/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_71_2_2=g_navNode_10_71_2.addNode('2612','Telling Our Combat Systems Story at IDEX 2009',ssUrlPrefix + 'technology/rtn09_idex/newsroom/rtn09_idex_cs/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_71_2_3=g_navNode_10_71_2.addNode('2614','Raytheon sights on international opportunities for targeting, vision systems ',ssUrlPrefix + 'technology/rtn09_idex/newsroom/rtn09_idex_vis/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_71_2_4=g_navNode_10_71_2.addNode('2615','IDS at IDEX',ssUrlPrefix + 'technology/rtn09_idex/newsroom/rtn09_idex_ids/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_73=g_navNode_10.addNode('2649','Australian International Air Show 2009',ssUrlPrefix + 'technology/rtn09_austair/index.html','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==250');
g_navNode_10_73_0=g_navNode_10_73.addNode('2660','Australian International Air Show 2009 Home',ssUrlPrefix + 'technology/rtn09_austair/rtn09_austair/index.html','hideLeft==false','navStartLevel==3','refreshUrl==/newsroom/technology/rtn09_austair','showNav==true');
g_navNode_10_73_1=g_navNode_10_73.addNode('2650','Highlighted Technologies',ssUrlPrefix + 'technology/rtn09_austair/technologies/index.html','graphicOnly==false','hideLeft==false','navStartLevel==3','showNav==true','showSideBar==false','showTopPage==false');
g_navNode_10_73_2=g_navNode_10_73.addNode('2651','Event Schedule',ssUrlPrefix + 'technology/rtn09_austair/event/index.html','graphicOnly==false','hideLeft==false','navStartLevel==3','showNav==true','showSideBar==false','showTopPage==true');
g_navNode_10_73_3=g_navNode_10_73.addNode('2661','Visitor Information',ssUrlPrefix + 'technology/rtn09_austair/visitor/index.html','navStartLevel==3','showNav==true');
g_navNode_10_73_4=g_navNode_10_73.addNode('2652','Advertising',ssUrlPrefix + 'technology/rtn09_austair/advertising/index.html','graphicOnly==false','hideLeft==false','navStartLevel==3','showNav==true','showTopPage==false');
g_navNode_10_73_5=g_navNode_10_73.addNode('2653','Newsroom',ssUrlPrefix + 'technology/rtn09_austair/newsroom/index.html','graphicOnly==true','hideLeft==false','navStartLevel==3','showNav==true','showTopPage==true');
g_navNode_10_73_5_0=g_navNode_10_73_5.addNode('2654','Story1',ssUrlPrefix + 'technology/rtn09_austair/newsroom/news1/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_73_5_1=g_navNode_10_73_5.addNode('2655','Story2',ssUrlPrefix + 'technology/rtn09_austair/newsroom/news2/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_73_5_2=g_navNode_10_73_5.addNode('2656','Story3',ssUrlPrefix + 'technology/rtn09_austair/newsroom/news3/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_73_5_3=g_navNode_10_73_5.addNode('2657','Story4',ssUrlPrefix + 'technology/rtn09_austair/newsroom/news4/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_73_5_4=g_navNode_10_73_5.addNode('2658','Story5',ssUrlPrefix + 'technology/rtn09_austair/newsroom/news5/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_73_5_5=g_navNode_10_73_5.addNode('2704','Story6',ssUrlPrefix + 'technology/rtn09_austair/newsroom/news6/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_73_5_6=g_navNode_10_73_5.addNode('2705','Story7',ssUrlPrefix + 'technology/rtn09_austair/newsroom/news7/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_73_5_7=g_navNode_10_73_5.addNode('2706','Story8',ssUrlPrefix + 'technology/rtn09_austair/newsroom/news8/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_73_5_8=g_navNode_10_73_5.addNode('2707','Story9',ssUrlPrefix + 'technology/rtn09_austair/newsroom/news9/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_73_5_9=g_navNode_10_73_5.addNode('2708','Story10',ssUrlPrefix + 'technology/rtn09_austair/newsroom/news10/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_73_5_10=g_navNode_10_73_5.addNode('2710','Highlights Archive',ssUrlPrefix + 'technology/rtn09_austair/newsroom/archive/index.html','graphicOnly==true','hideLeft==false','navStartLevel==3','showNav==true','showSideBar==false','showTopPage==true');
g_navNode_10_75=g_navNode_10.addNode('2668','National Space Symposium',ssUrlPrefix + 'technology/rtn09_nspacesym/index.html','hideLeft==true','navStartLevel==3','rssTitle==Raytheon Has Presence at 25th National Space Symposium','rssUrl==http\x3a//www.raytheon.com/rss/nss2009/main.rss','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==250');
g_navNode_10_75_0=g_navNode_10_75.addNode('2669','National Space Symposium 2009',ssUrlPrefix + 'technology/rtn09_nspacesym/rtn09_nspacesym/index.html','navStartLevel==3','refreshUrl==/newsroom/technology/rtn09_nspacesym','showNav==true');
g_navNode_10_75_1=g_navNode_10_75.addNode('2670','Highlighted Technologies',ssUrlPrefix + 'technology/rtn09_nspacesym/technologies/index.html','hideLeft==false','navStartLevel==3','showNav==true');
g_navNode_10_75_3=g_navNode_10_75.addNode('2672','Advertising',ssUrlPrefix + 'technology/rtn09_nspacesym/advertising/index.html','navStartLevel==3','showNav==true');
g_navNode_10_75_4=g_navNode_10_75.addNode('2673','Newsroom',ssUrlPrefix + 'technology/rtn09_nspacesym/newsroom/index.html','graphicOnly==true','hideLeft==false','navStartLevel==3','showNav==true','showTopPage==true');
g_navNode_10_75_4_0=g_navNode_10_75_4.addNode('2674','Raytheon Chases U.S. Air Force Global Broadcast Service Transition Contract ',ssUrlPrefix + 'technology/rtn09_nspacesym/newsroom/news1/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_75_4_1=g_navNode_10_75_4.addNode('2675','Next-Generation GPS OCX Highlighted at 2009 National Space Symposium ',ssUrlPrefix + 'technology/rtn09_nspacesym/newsroom/news2/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_75_4_2=g_navNode_10_75_4.addNode('2676','Dugle Presents Welcomes the Lifetime Space Achievement Award Winner at Raytheon-sponsored Luncheon ',ssUrlPrefix + 'technology/rtn09_nspacesym/newsroom/news3/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_75_4_3=g_navNode_10_75_4.addNode('2677','Top Avalanche Forecaster Demonstrates the Importance of Math and Science',ssUrlPrefix + 'technology/rtn09_nspacesym/newsroom/news4/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_75_4_4=g_navNode_10_75_4.addNode('2678','New Responder\u2122 Concept Introduced at National Space Symposium ',ssUrlPrefix + 'technology/rtn09_nspacesym/newsroom/news5/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_75_4_5=g_navNode_10_75_4.addNode('2774','Jon Jones Discusses \"The Next Space Age\" with Panel of Industry Leaders',ssUrlPrefix + 'technology/rtn09_nspacesym/newsroom/news6/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_76=g_navNode_10.addNode('2680','Raytheon\'s FBI Information Sharing Program Showcased in Evidence Technology Magazine and the GovSec Conference',ssUrlPrefix + 'technology/rtn09_ndex/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_77=g_navNode_10.addNode('2697','Tempwave/Frost Protection',ssUrlPrefix + 'technology/rtn09_tmpwv/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_78=g_navNode_10.addNode('2795','Raytheon Capabilities Highlighted at Seventh Annual U.S. Missile Defense Conference',ssUrlPrefix + 'technology/rtn09_usmd/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
g_navNode_10_79=g_navNode_10.addNode('RTN_IIS_rsa_conference','RSA Conference ',ssUrlPrefix + 'technology/rtn09_rsa/index.html','graphicOnly==false','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
g_navNode_10_80=g_navNode_10.addNode('2884','Navy League Sea-Air-Space Exposition 2009',ssUrlPrefix + 'technology/rtn09_navyleague/index.html','hideLeft==true','navStartLevel==3','rssTitle==Raytheon Has Presence at Navy League Sea-Air-Space Exposition 2009','rssUrl==http\x3a//www.raytheon.com/rss/seaairspace/main.rss','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==250');
g_navNode_10_80_0=g_navNode_10_80.addNode('2893','Navy League Sea-Air-Space Exposition 2009',ssUrlPrefix + 'technology/rtn09_navyleague/rtn09_navyleague/index.html','refreshUrl==/newsroom/technology/rtn09_navyleague','showNav==true');
g_navNode_10_80_1=g_navNode_10_80.addNode('2887','Highlighted Technologies',ssUrlPrefix + 'technology/rtn09_navyleague/highlights/index.html','graphicOnly==true','navStartLevel==3','rssTitle==Raytheon Has Presence at Navy League Sea-Air-Space Exposition 2009','rssUrl==http\x3a//www.raytheon.com/rss/seaairspace/main.rss','showNav==true','showTopPage==true');
g_navNode_10_80_2=g_navNode_10_80.addNode('2886','Advertising',ssUrlPrefix + 'technology/rtn09_navyleague/advertising/index.html','graphicOnly==true','navStartLevel==3','rssTitle==Raytheon Has Presence at Navy League Sea-Air-Space Exposition 2009','rssUrl==http\x3a//www.raytheon.com/rss/seaairspace/main.rss','showNav==true','showTopPage==true');
g_navNode_10_80_3=g_navNode_10_80.addNode('2885','Newsroom',ssUrlPrefix + 'technology/rtn09_navyleague/newsroom/index.html','graphicOnly==true','navStartLevel==3','rssTitle==Raytheon Has Presence at Navy League Sea-Air-Space Exposition 2009','rssUrl==http\x3a//www.raytheon.com/rss/seaairspace/main.rss','showNav==true','showTopPage==true');
g_navNode_10_80_3_0=g_navNode_10_80_3.addNode('2888','Seapower for Today and Tomorrow',ssUrlPrefix + 'technology/rtn09_navyleague/newsroom/news1/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','rssTitle==Raytheon Has Presence at Navy League Sea-Air-Space Exposition 2009','rssUrl==http\x3a//www.raytheon.com/rss/seaairspace/main.rss','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_80_3_1=g_navNode_10_80_3.addNode('2889','Story 2',ssUrlPrefix + 'technology/rtn09_navyleague/newsroom/news2/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','rssTitle==Raytheon Has Presence at Navy League Sea-Air-Space Exposition 2009','rssUrl==http\x3a//www.raytheon.com/rss/seaairspace/main.rss','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_80_3_2=g_navNode_10_80_3.addNode('2890','Precision-Guided Munitions',ssUrlPrefix + 'technology/rtn09_navyleague/newsroom/pgm/index.html','browserTitle==Precision-Guided Munitions','graphicOnly==true','hideLeft==true','navStartLevel==3','rssTitle==Raytheon Has Presence at Navy League Sea-Air-Space Exposition 2009','rssUrl==http\x3a//www.raytheon.com/rss/seaairspace/main.rss','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
g_navNode_10_80_3_3=g_navNode_10_80_3.addNode('2891','Sea-Based Missile Defense',ssUrlPrefix + 'technology/rtn09_navyleague/newsroom/sbmd/index.html','browserTitle==Sea- Based Missile Defense','graphicOnly==true','hideLeft==true','navStartLevel==3','rssTitle==Raytheon Has Presence at Navy League Sea-Air-Space Exposition 2009','rssUrl==http\x3a//www.raytheon.com/rss/seaairspace/main.rss','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
g_navNode_10_80_3_4=g_navNode_10_80_3.addNode('2892','Story 5',ssUrlPrefix + 'technology/rtn09_navyleague/newsroom/news5/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','rssTitle==Raytheon Has Presence at Navy League Sea-Air-Space Exposition 2009','rssUrl==http\x3a//www.raytheon.com/rss/seaairspace/main.rss','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_81=g_navNode_10.addNode('2940','Raytheon Sponsors 2009 Responsive Space Conference',ssUrlPrefix + 'technology/rtn09_respaceconf/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_82=g_navNode_10.addNode('3052','Raytheon\'s UAS Technologies',ssUrlPrefix + 'technology/rtn09_uav/index.html','contributorOnly==false','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
g_navNode_10_82_0=g_navNode_10_82.addNode('3060','Raytheon\'s UAS Technologies ',ssUrlPrefix + 'technology/rtn09_uav/redirect/index.html','refreshTime==0','refreshUrl==/newsroom/technology/rtn09_uav/');
g_navNode_10_82_1=g_navNode_10_82.addNode('3061','KillerBee',ssUrlPrefix + 'technology/rtn09_uav/killerbee/index.html','refreshTime==0','refreshUrl==/capabilities/products/killerbee/','showNav==false','showSideBar==false');
g_navNode_10_82_2=g_navNode_10_82.addNode('3059','UCS',ssUrlPrefix + 'technology/rtn09_uav/ucs/index.html','refreshUrl==/capabilities/products/ucs/','showNav==false','showSideBar==false');
g_navNode_10_82_3=g_navNode_10_82.addNode('3062','Common Sensor Payload ',ssUrlPrefix + 'technology/rtn09_uav/csp/index.html','refreshUrl==/capabilities/products/csp/index.html','showNav==true','showSideBar==true');
g_navNode_10_82_4=g_navNode_10_82.addNode('3063','MTS-B Multi-Spectral Targeting System ',ssUrlPrefix + 'technology/rtn09_uav/mts-b/index.html','refreshUrl==/capabilities/products/mts_b/');
g_navNode_10_82_5=g_navNode_10_82.addNode('3064','AN/AAS-52 Multi-Spectral Targeting System \x28MTS\x29',ssUrlPrefix + 'technology/rtn09_uav/mts/index.html','refreshUrl==/capabilities/products/mts/');
g_navNode_10_82_6=g_navNode_10_82.addNode('3065','Global Hawk ',ssUrlPrefix + 'technology/rtn09_uav/globalhawk/index.html','refreshUrl==/capabilities/products/globalhawk/index.html');
g_navNode_10_83=g_navNode_10.addNode('RTN09_DODIIS','Department of Defense Intelligence Information Systems 2009',ssUrlPrefix + 'technology/rtn09_dodiis/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==250');
g_navNode_10_84=g_navNode_10.addNode('3077','New Raytheon-IMI GPS guided mortar rounds demonstrate tactical capability during tests',ssUrlPrefix + 'technology/dagger_05-09/index.html','browserTitle==Missile Systems DAGGER','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','sideBarWidth==181');
g_navNode_10_84_0=g_navNode_10_84.addNode('3101','video',ssUrlPrefix + 'technology/dagger_05-09/video/index.html','browserTitle==Missile Systems DAGGER','contributorOnly==false','graphicOnly==true','hideLeft==true','showNav==true');
g_navNode_10_85=g_navNode_10.addNode('3079','2009 Paris Air Show',ssUrlPrefix + 'technology/pas09/index.html','graphicOnly==false','hideLeft==true','navStartLevel==3','rssTitle==Raytheon Has Presence at 2009 Paris Air Show','rssUrl==http\x3a//www.raytheon.com/rss/rtn_paris/main.rss','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==225');
g_navNode_10_85_0=g_navNode_10_85.addNode('3080','2009 Paris Air Show Home',ssUrlPrefix + 'technology/pas09/rtn09_pas/index.html','navStartLevel==3','refreshUrl==/newsroom/technology/pas09','showNav==true','showTopPage==true');
g_navNode_10_85_1=g_navNode_10_85.addNode('3117','Highlighted Technologies',ssUrlPrefix + 'technology/pas09/tech/index.html','browserTitle==2009 Paris Air Show Highlighted Technologies','navStartLevel==3','showNav==true','showTopPage==false');
g_navNode_10_85_2=g_navNode_10_85.addNode('3116','Chalet Information',ssUrlPrefix + 'technology/pas09/chalet/index.html','browserTitle==2009 Paris Air Show Chalet Information','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_3=g_navNode_10_85.addNode('3115','Media Briefings',ssUrlPrefix + 'technology/pas09/briefings/index.html','browserTitle==2009 Paris Air Show Media Briefings','navStartLevel==3','showNav==true','showSideBar==false','showTopPage==true');
g_navNode_10_85_4=g_navNode_10_85.addNode('3118','Advertising',ssUrlPrefix + 'technology/pas09/ads/index.html','browserTitle==2009 Paris Air Show Advertising','navStartLevel==3','showNav==true');
g_navNode_10_85_5=g_navNode_10_85.addNode('3081','Newsroom',ssUrlPrefix + 'technology/pas09/newsroom/index.html','browserTitle==2009 Paris Air Show Newsroom','graphicOnly==true','navStartLevel==3','showNav==true','showTopPage==true');
g_navNode_10_85_5_0=g_navNode_10_85_5.addNode('3082','Raytheon Expanding Training Solutions to International Customers ',ssUrlPrefix + 'technology/pas09/newsroom/news1/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_1=g_navNode_10_85_5.addNode('3083','Excalibur 1b Completes Demonstration of Archer Gun System Compatibility',ssUrlPrefix + 'technology/pas09/newsroom/news2/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_2=g_navNode_10_85_5.addNode('3084','Raytheon Equips Super Hornet With Broad Array of Mission Solutions',ssUrlPrefix + 'technology/pas09/newsroom/news3/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_3=g_navNode_10_85_5.addNode('3085','Story 4',ssUrlPrefix + 'technology/pas09/newsroom/news4/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_4=g_navNode_10_85_5.addNode('3086','Canada, Raytheon Integrate Enhanced Paveway II on CF-18 in Just 90 Days',ssUrlPrefix + 'technology/pas09/newsroom/news5/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_5=g_navNode_10_85_5.addNode('3087','Raytheon Provides Unmatched Global ISR Capabilities through ASTOR and other Customized Systems',ssUrlPrefix + 'technology/pas09/newsroom/news6/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_6=g_navNode_10_85_5.addNode('3088','Story 7',ssUrlPrefix + 'technology/pas09/newsroom/news7/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_7=g_navNode_10_85_5.addNode('3089','Raytheon Tackles Clutter Created by Wind Farms in the U.K.',ssUrlPrefix + 'technology/pas09/newsroom/news8/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_8=g_navNode_10_85_5.addNode('3090','Raytheon\u2019s Strong AESA Heritage Spurs Technology Innovations',ssUrlPrefix + 'technology/pas09/newsroom/news9/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_9=g_navNode_10_85_5.addNode('3091','Raytheon to Display Operationally Tested ASTOR System at Paris Air Show',ssUrlPrefix + 'technology/pas09/newsroom/news10/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_10=g_navNode_10_85_5.addNode('3092','Raytheon\x3a Delivering Tomorrow\u2019s Technology for Today\u2019s Integrated Fighter',ssUrlPrefix + 'technology/pas09/newsroom/news11/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_11=g_navNode_10_85_5.addNode('3093','Raytheon and BAE Systems Complete First Quiet Eyes Laser Pointer-Tracker Flight Test',ssUrlPrefix + 'technology/pas09/newsroom/news12/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_12=g_navNode_10_85_5.addNode('3094','Responder\x3a Making Access to Space Assets More Affordable',ssUrlPrefix + 'technology/pas09/newsroom/news13/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_13=g_navNode_10_85_5.addNode('3095','New Raytheon Datalink Enables KillerBee UAS to Communicate With Entire Network',ssUrlPrefix + 'technology/pas09/newsroom/news14/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_14=g_navNode_10_85_5.addNode('3096','Miniature Air Launched Decoy Jammer Completed Milestone, Nears Flight Testing',ssUrlPrefix + 'technology/pas09/newsroom/news15/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_15=g_navNode_10_85_5.addNode('3126','Web Features',ssUrlPrefix + 'technology/pas09/newsroom/newsarchive/index.html','browserTitle==2009 Paris Air Show Web Features','graphicOnly==true','hideLeft==false','navStartLevel==3','showNav==true','showSideBar==false','showTopPage==true');
g_navNode_10_85_5_16=g_navNode_10_85_5.addNode('3175','Raytheon\u2019s Lighter-Than-Air Systems Provide ISR ',ssUrlPrefix + 'technology/pas09/newsroom/news16/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_17=g_navNode_10_85_5.addNode('3176','Raytheon Supports U.S. International Pavilion at Paris Air Show',ssUrlPrefix + 'technology/pas09/newsroom/news17/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_18=g_navNode_10_85_5.addNode('3188','Surface Launched AMRAAM Continues Momentum in Medium-Range Air Defense',ssUrlPrefix + 'technology/pas09/newsroom/news18/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_19=g_navNode_10_85_5.addNode('3189','Patriot Resurgence Is Important Message at Paris Air Show ',ssUrlPrefix + 'technology/pas09/newsroom/news19/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_20=g_navNode_10_85_5.addNode('3190','Raytheon Sponsors Rocketry Students at Paris Air Show',ssUrlPrefix + 'technology/pas09/newsroom/news20/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_21=g_navNode_10_85_5.addNode('3191','Raytheon Sponsors Rocketry Students at Paris Air Show',ssUrlPrefix + 'technology/pas09/newsroom/news21/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_22=g_navNode_10_85_5.addNode('3192','Raytheon Unmanned Solutions Demonstrated at Paris Air Show 2009',ssUrlPrefix + 'technology/pas09/newsroom/news22/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_23=g_navNode_10_85_5.addNode('3193','Army Modernization Top of Mind at Air Show',ssUrlPrefix + 'technology/pas09/newsroom/news23/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_24=g_navNode_10_85_5.addNode('3194','Story 24',ssUrlPrefix + 'technology/pas09/newsroom/news24/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_25=g_navNode_10_85_5.addNode('3195','Story 25',ssUrlPrefix + 'technology/pas09/newsroom/news25/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_85_5_26=g_navNode_10_85_5.addNode('3203','Press Releases',ssUrlPrefix + 'technology/pas09/newsroom/releases/index.html','browserTitle==2009 Paris Air Show Press Releases','navStartLevel==3','showNav==true');
g_navNode_10_85_5_27=g_navNode_10_85_5.addNode('3204','Press Coverage',ssUrlPrefix + 'technology/pas09/newsroom/presscoverage/index.html','browserTitle==2009 Paris Air Show Press Coverage','navStartLevel==3','showNav==true');
g_navNode_10_85_7=g_navNode_10_85.addNode('3196','Video Highlights',ssUrlPrefix + 'technology/pas09/video/index.html','browserTitle==2009 Paris Air Show Video Highlights','navStartLevel==3','showNav==true','showTopPage==true');
g_navNode_10_85_8=g_navNode_10_85.addNode('3260','Dual Band Podcast',ssUrlPrefix + 'technology/pas09/podcasts/index.html','browserTitle==Redirect to Dual Band Postcasts','refreshTime==0','refreshUrl==/newsroom/podcasts/index.html');
g_navNode_10_86=g_navNode_10.addNode('3099','NLOS-LS team successfully fires PAM missiles at multiple targets',ssUrlPrefix + 'technology/nlos_ls_05-09/index.html','browserTitle==Missile Systems NLOS-LS','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','sideBarWidth==181');
g_navNode_10_87=g_navNode_10.addNode('3131','Raytheon Awarded NASA\'s Earth Observing System Data Services Bridge Contract',ssUrlPrefix + 'technology/rtn09_eosdis/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==198');
g_navNode_10_88=g_navNode_10.addNode('3132','Raytheon Provides Security Support for Indy 500',ssUrlPrefix + 'technology/rtn09_indy500/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_89=g_navNode_10.addNode('3177','Joint Standoff Weapon C-1 passes key milestone toward network-enabled capability',ssUrlPrefix + 'technology/jsow_06-09/index.html','browserTitle==Raytheon Joint Standoff Weapon C-1','hideLeft==true','showNav==true','showSideBar==true','sideBarWidth==181');
g_navNode_10_90=g_navNode_10.addNode('3212','NASA\'s LRO Takes Off with Raytheon Mini-RF Technology Aboard',ssUrlPrefix + 'technology/rtn09_lro/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_91=g_navNode_10.addNode('3213','Raytheon expands into new customer markets, including UAS training',ssUrlPrefix + 'technology/rtn09_uastrain/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_92=g_navNode_10.addNode('3235','Raytheon\'s ARTEMIS Sensor Featured in the Press',ssUrlPrefix + 'technology/rtn09_artemispress/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_93=g_navNode_10.addNode('3255','Raytheon Develops Innovative Tool to Help Advance U.S. STEM Education',ssUrlPrefix + 'technology/rtn09_bhef/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_94=g_navNode_10.addNode('3278','Raytheon Celebrates 40th Anniversary of the Apollo 11 Program',ssUrlPrefix + 'technology/rtn09_apollo11/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_95=g_navNode_10.addNode('3279','Test',ssUrlPrefix + 'technology/rtn09_teststory/index.html','hideLeft==true','showNav==true');
g_navNode_10_96=g_navNode_10.addNode('3292','NLOS-LS PAM missile team demonstrates capability against moving targets',ssUrlPrefix + 'technology/nlos-ls_07-09/index.html','browserTitle==Raytheon Missile Systems NLOS-LS','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_97=g_navNode_10.addNode('3403','Defence Systems \x26 Equipment International 2009',ssUrlPrefix + 'technology/rtn09_dsei/index.html','hideLeft==true','showNav==false','showSideBar==true','showTopPage==true','sideBarWidth==225');
g_navNode_10_97_0=g_navNode_10_97.addNode('3404','Highlighted Technologies',ssUrlPrefix + 'technology/rtn09_dsei/tech/index.html','hideLeft==true');
g_navNode_10_97_1=g_navNode_10_97.addNode('3406','Advertising',ssUrlPrefix + 'technology/rtn09_dsei/ads/index.html','hideLeft==true','showNav==false');
g_navNode_10_97_2=g_navNode_10_97.addNode('3416','Introducing Raytheon\'s Next Generation X-Band, Multifunction Radar - SPY-5',ssUrlPrefix + 'technology/rtn09_dsei/spy-5/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_10_97_3=g_navNode_10_97.addNode('3417','Laser-Guided Rocket',ssUrlPrefix + 'technology/rtn09_dsei/lgr/index.html','hideLeft==true','showNav==false','showSideBar==true','showTopPage==true');
g_navNode_10_98=g_navNode_10.addNode('3423','AFA Space Conference and Technology Exposition 2009',ssUrlPrefix + 'technology/rtn09_afa/index.html','hideLeft==true','showNav==false','showSideBar==true','showTopPage==true','sideBarWidth==225');
g_navNode_10_98_0=g_navNode_10_98.addNode('3424','Highlighted Technologies',ssUrlPrefix + 'technology/rtn09_afa/highlights/index.html','hideLeft==true');
g_navNode_10_98_1=g_navNode_10_98.addNode('3425','Advertising',ssUrlPrefix + 'technology/rtn09_afa/ads/index.html','hideLeft==true');
g_navNode_10_98_2=g_navNode_10_98.addNode('3426','AESA Radar for F-15E Aircraft Receives Latest Designation\x3a APG-82\x28V\x291',ssUrlPrefix + 'technology/rtn09_afa/news1/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_10_98_3=g_navNode_10_98.addNode('3427','Raytheon\'s NCADE Meets Warfighter Needs, Counters Growing Ballistic Missile Threat',ssUrlPrefix + 'technology/rtn09_afa/news2/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_10_98_4=g_navNode_10_98.addNode('3428','Integrated Fighter and ISR Innovations at AFA',ssUrlPrefix + 'technology/rtn09_afa/news3/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_10_98_5=g_navNode_10_98.addNode('3429','VOIP for Key Intelligence, Surveillance and Reconnaissance Systems',ssUrlPrefix + 'technology/rtn09_afa/news4/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_10_99=g_navNode_10.addNode('3433','Raytheon Company\x3a 2009 AUSA Annual Meeting and Exposition',ssUrlPrefix + 'technology/rtn09_ausa/index.html','hideLeft==true','refreshUrl==/newsroom/technology/rtn09_ausa/c2','showNav==true','showSideBar==false','showTopPage==true');
g_navNode_10_99_0=g_navNode_10_99.addNode('3436','Highlighted Technologies ',ssUrlPrefix + 'technology/rtn09_ausa/highlights/index.html','navStartLevel==3','showNav==false','showTopPage==false');
g_navNode_10_99_1=g_navNode_10_99.addNode('3437','Advertising',ssUrlPrefix + 'technology/rtn09_ausa/ads/index.html','navStartLevel==3','showNav==false');
g_navNode_10_99_3=g_navNode_10_99.addNode('3439','Newsroom',ssUrlPrefix + 'technology/rtn09_ausa/newsroom/index.html','graphicOnly==true','navStartLevel==3','showNav==false','showTopPage==true');
g_navNode_10_99_3_2=g_navNode_10_99_3.addNode('3444','Raytheon at AUSA 2009\x3a Demonstrated Capabilities Yesterday, Today and Tomorrow',ssUrlPrefix + 'technology/rtn09_ausa/newsroom/news3/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showNav==false','showSideBar==true','showTopPage==true');
g_navNode_10_99_3_8=g_navNode_10_99_3.addNode('3509','Jim Ryan - Poster Artist',ssUrlPrefix + 'technology/rtn09_ausa/newsroom/news9/index.html','graphicOnly==false','hideLeft==true','navStartLevel==3','showSideBar==false','showTopPage==true');
g_navNode_10_99_3_9=g_navNode_10_99_3.addNode('3523','Raytheon Helps Improve Readiness Through Warfighter FOCUS Program',ssUrlPrefix + 'technology/rtn09_ausa/newsroom/news10/index.html','graphicOnly==true','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_10_99_4=g_navNode_10_99.addNode('3440','Virtual Tour',ssUrlPrefix + 'technology/rtn09_ausa/vtour/index.html','navStartLevel==3','showNav==false');
g_navNode_10_99_5=g_navNode_10_99.addNode('3441','Podcast',ssUrlPrefix + 'technology/rtn09_ausa/podcast/index.html','navStartLevel==3','showNav==false','showSideBar==true');
g_navNode_10_99_9=g_navNode_10_99.addNode('3504','Raytheon Company\x3a 2009 AUSA Annual Meeting and Exposition Training',ssUrlPrefix + 'technology/rtn09_ausa/training/index.html','bannerData==/rtnwcm/groups/public/documents/content/ausa09_spot_xml.xml','bannerType==spotlight','hideLeft==true','navStartLevel==3','showNav==false','showSideBar==true','showTopPage==true','sideBarWidth==225');
g_navNode_10_99_10=g_navNode_10_99.addNode('3519','Video Highlights',ssUrlPrefix + 'technology/rtn09_ausa/videos/index.html');
g_navNode_10_99_11=g_navNode_10_99.addNode('3520','Onsite Videos',ssUrlPrefix + 'technology/rtn09_ausa/onsite/index.html');
g_navNode_10_100=g_navNode_10.addNode('3521','Raytheon Introduces the THUNDR',ssUrlPrefix + 'technology/ray09thundr/index.html','hideLeft==true','showNav==true','showSideBar==true','sideBarWidth==198');
g_navNode_10_101=g_navNode_10.addNode('3524','Highlights from the Insider Threat Solution Seminar',ssUrlPrefix + 'technology/insiderthreatseminar/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==198');
g_navNode_10_102=g_navNode_10.addNode('3528','Climb Aboard, Buckle Up and Discover a High-Velocity Way MathMovesU ',ssUrlPrefix + 'technology/rtn09_soatwashpost/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_103=g_navNode_10.addNode('3529','\'Sum of all Thrills\' Experience Extended Online to MathMovesU.com ',ssUrlPrefix + 'technology/rtn09_nwmmuwrld/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_104=g_navNode_10.addNode('3530','MathMovesU Scholarship and Grants Program Encourages STEM Interest ',ssUrlPrefix + 'technology/rtn09_mmuschlrshps/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_105=g_navNode_10.addNode('3531','2009 Raytheon',ssUrlPrefix + 'technology/rtn09_mthcntsannc/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_106=g_navNode_10.addNode('3532','Refreshed Ad Campaign ',ssUrlPrefix + 'technology/rtn09_rfrshad/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_107=g_navNode_10.addNode('3533','Raytheon Announces MathMovesU Sweepstakes Grand Prize Winner ',ssUrlPrefix + 'technology/rtn09_mmusweepstake/index.html','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_10_108=g_navNode_10.addNode('3613','Raytheon Android Tactical System Featured in Forbes ',ssUrlPrefix + 'technology/rtn09_rats/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==198');
g_navNode_10_109=g_navNode_10.addNode('3658','Dubai Air Show 2009',ssUrlPrefix + 'technology/rtn09_dubai/index.html','bannerData==/rtnwcm/groups/public/documents/content/dubai09_spot_xml.xml','bannerType==spotlight','hideLeft==true','navStartLevel==3','showSideBar==true','showTopPage==true','sideBarWidth==225');
g_navNode_10_109_1=g_navNode_10_109.addNode('3660','Advertising',ssUrlPrefix + 'technology/rtn09_dubai/ads/index.html','hideLeft==true','navStartLevel==3');
g_navNode_10_109_2=g_navNode_10_109.addNode('3662','Virtual Tour',ssUrlPrefix + 'technology/rtn09_dubai/virtual/index.html','hideLeft==true');
g_navNode_10_109_3=g_navNode_10_109.addNode('3661','Newsroom',ssUrlPrefix + 'technology/rtn09_dubai/newsroom/index.html','graphicOnly==true','hideLeft==true','navStartLevel==3','showTopPage==true');
g_navNode_10_109_3_0=g_navNode_10_109_3.addNode('3673','Raytheon Strengthens its Commitment to the United Arab Emirates and the Gulf',ssUrlPrefix + 'technology/rtn09_dubai/newsroom/news6/index.html','graphicOnly==true','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_10_109_3_1=g_navNode_10_109_3.addNode('3669','Raytheon Sees Bright Future for Patriot',ssUrlPrefix + 'technology/rtn09_dubai/newsroom/news2/index.html','graphicOnly==true','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_10_109_3_2=g_navNode_10_109_3.addNode('3672','TALON Laser-Guided Rocket Q\x26A',ssUrlPrefix + 'technology/rtn09_dubai/newsroom/news5/index.html','graphicOnly==true','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_10_109_3_3=g_navNode_10_109_3.addNode('3670','SL-AMRAAM Enhances Air and Missile Defense in the Gulf',ssUrlPrefix + 'technology/rtn09_dubai/newsroom/news3/index.html','graphicOnly==false','hideLeft==true','showNav==false','showSideBar==true','showTopPage==true');
g_navNode_10_109_3_5=g_navNode_10_109_3.addNode('3666','Raytheon Bringing Integrated Training Solutions to the Middle East',ssUrlPrefix + 'technology/rtn09_dubai/newsroom/news1/index.html','graphicOnly==true','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_10_109_3_6=g_navNode_10_109_3.addNode('3674','Raytheon\'s Phalanx\x3a The International Standard in Ship Close-In Defense',ssUrlPrefix + 'technology/rtn09_dubai/newsroom/news7/index.html','graphicOnly==true','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_10_109_3_7=g_navNode_10_109_3.addNode('3675','Raytheon Offers \"Fly Before You Buy\" Program for Maverick Missiles',ssUrlPrefix + 'technology/rtn09_dubai/newsroom/news9/index.html','graphicOnly==true','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_10_109_3_9=g_navNode_10_109_3.addNode('3677','RACR\x3a International Customers Trying on a New Size of AESA',ssUrlPrefix + 'technology/rtn09_dubai/newsroom/news10/index.html','hideLeft==true','showNav==true','showSideBar==true');
g_navNode_10_109_3_10=g_navNode_10_109_3.addNode('3712','Intelligence, Surveillance and Reconnaissance\x3a A Global Mission',ssUrlPrefix + 'technology/rtn09_dubai/newsroom/news11/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_10_109_4=g_navNode_10_109.addNode('3663','Podcast',ssUrlPrefix + 'technology/rtn09_dubai/podcasts/index.html','hideLeft==true','showSideBar==true');
g_navNode_10_109_5=g_navNode_10_109.addNode('3665','Event Photos',ssUrlPrefix + 'technology/rtn09_dubai/photos/index.html','hideLeft==true','navStartLevel==3');
g_navNode_10_109_6=g_navNode_10_109.addNode('3678','Video Highlights',ssUrlPrefix + 'technology/rtn09_dubai/videos/index.html','hideLeft==true');
