/////////////////////////////////////////////////////////////////////////////
// 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,'bannerType==newsbox','graphicOnly==TRUE','rssTitle==Newsroom','rssUrl==http\x3a//raytheon.mediaroom.com/index.php?s\x3d43\x26pagetemplate\x3drss','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==false','sideBarWidth==180');
g_navNode_0=g_navNode_Root.addNode('99','Site Manager',ssUrlPrefix + 'sitemanager/index.html','contributorOnly==FALSE','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==false','sideBarWidth==200');
g_navNode_2=g_navNode_Root.addNode('411','Media Contacts',ssUrlPrefix + 'media/index.html','graphicOnly==false','showNav==true','showSideBar==false','showTopPage==true');
g_navNode_5=g_navNode_Root.addNode('409','Trade Show Calendar',ssUrlPrefix + 'calendar/index.html','showNav==true','showSideBar==false');
g_navNode_6=g_navNode_Root.addNode('4941','Social Media',ssUrlPrefix + 'social_media/index.html','browserTitle==Connect Through Social Media','hideLeft==false','showNav==true','showTopPage==true');
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\x3d2011\x26s\x3d43');
g_navNode_8=g_navNode_Root.addNode('396','Raytheon Insight News',ssUrlPrefix + 'feature/index.html','archiveQuery==xEffectiveDate \x3e\x3d \x6001/01/2007\x60  \x3cAND\x3e  xEffectiveDate \x3c \x6012/31/2007\x60','browserTitle==Raytheon Insight News \x282012\x29','contributorOnly==false','rssTitle==Features','rssUrl==http\x3a//www.raytheon.com/rss/feature/main.rss','showNav==TRUE','showTopPage==false');
g_navNode_8_0=g_navNode_8.addNode('6480','Previous Features',ssUrlPrefix + 'feature/archive/index.html','browserTitle==Raytheon Insight News \x28Previous\x29','showNav==true','showTopPage==true');
if (SSContributor)
{
g_navNode_8_1=g_navNode_8.addNode('1585','SM-3 Satellite Intercept',ssUrlPrefix + 'feature/sm3_intercept/index.html','browserTitle==RMS SM-3 Satellite Intercept','contributorOnly==true','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
g_navNode_8_1_0=g_navNode_8_1.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');
}
if (SSContributor)
{
g_navNode_8_2=g_navNode_8.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','contributorOnly==true','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_3=g_navNode_8.addNode('3527','It All Adds Up\x21 Raytheon\'s \'Sum of all Thrills\' Experience Opens Today',ssUrlPrefix + 'feature/rtn09_soat-rc/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_4=g_navNode_8.addNode('3781','Raytheon to Bring Powerful Mobile Apps to Military and Government Users',ssUrlPrefix + 'feature/rtn09_iphnapps/index.html','contributorOnly==true','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_5=g_navNode_8.addNode('3742','FORTUNE Names Raytheon One of the Top 25 Companies for Leaders',ssUrlPrefix + 'feature/rtn09_tpldrs/index.html','contributorOnly==true','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_6=g_navNode_8.addNode('3883','Raytheon Awarded \x241.1 Billion for Patriot Sale to Taiwan',ssUrlPrefix + 'feature/rtn09_ptrttaiwn/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_7=g_navNode_8.addNode('4407','2010 Raytheon MATHCOUNTS\xae National Champion Crowned',ssUrlPrefix + 'feature/rtn10_mathcounts_winners/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_8=g_navNode_8.addNode('4413','Raytheon Extends MATHCOUNTS\xae Program Sponsorship Through 2014',ssUrlPrefix + 'feature/rtn10_mathcounts_2014/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_9=g_navNode_8.addNode('4593','Raytheon MATHCOUNTS Winners\' Circle\x3a The Oval Office ',ssUrlPrefix + 'feature/rtn10_mthcovloffc/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true');
}
if (SSContributor)
{
g_navNode_8_10=g_navNode_8.addNode('4934','Raytheon and the BHEF Announce Enhancements to the U.S. STEM Education Model ',ssUrlPrefix + 'feature/rtn10_bhefannouncement/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_11=g_navNode_8.addNode('5012','Sum of all Thrills Celebrates One Year Anniversary',ssUrlPrefix + 'feature/rtn10_soat/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_12=g_navNode_8.addNode('5042','MathMovesU Celebrates \'Sum of all Thrills\'\u2122 Anniversary With Guests Around the World',ssUrlPrefix + 'feature/rtn10_soatfollowup/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_13=g_navNode_8.addNode('4439','Raytheon Delivers 100th Standard Missile-3 Block IA to Missile Defense Agency',ssUrlPrefix + 'feature/sm3_05-10/index.html','browserTitle==Raytheon Company Standard Missile-3','contributorOnly==true','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','sideBarWidth==181');
}
if (SSContributor)
{
g_navNode_8_17=g_navNode_8.addNode('5433','Raytheon Hosts a Storm Chaser and Takes Students Inside Tornadoes at Weatherfest',ssUrlPrefix + 'feature/rtn11_weatherfest/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==198');
}
if (SSContributor)
{
g_navNode_8_18=g_navNode_8.addNode('5445','Raytheon Expands ISR Portfolio With Acquisition of Applied Signal Technology, Inc.',ssUrlPrefix + 'feature/rtn11_ast_aquisition/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_19=g_navNode_8.addNode('5447','RPS and Baptist Health Sign Up for SMART Training',ssUrlPrefix + 'feature/rps11_smart_training/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_20=g_navNode_8.addNode('5448','Raytheon and the Patriots Kick Off 3rd Annual Science Fair Program',ssUrlPrefix + 'feature/rtn11_sciencefair/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_22=g_navNode_8.addNode('5498','Raytheon Recognized at 2011 BEYA National Conference',ssUrlPrefix + 'feature/rtn11_beyafllw/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_24=g_navNode_8.addNode('5519','Top Simulation and Training Companies',ssUrlPrefix + 'feature/rts11_top_training/index.html','contributorOnly==true','hideLeft==true','showNav==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_25=g_navNode_8.addNode('5520','Full Spectrum Operations Training',ssUrlPrefix + 'feature/rts11_fso/index.html','contributorOnly==true','graphicOnly==true','hideLeft==true','showNav==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_27=g_navNode_8.addNode('5524','Discover Engineering Family Day\x3a Bringing Engineering and Math to Thousands in D.C.',ssUrlPrefix + 'feature/rtn11_ded/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_28=g_navNode_8.addNode('5541','RPS Ranks No. 1 for Third Straight Year in HRO Today Magazine\'s Baker\'s Dozen',ssUrlPrefix + 'feature/rtn11_bakers_dozen/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_31=g_navNode_8.addNode('5572','Raytheon Pasadena Achieves CMMI Level 3 Recertification',ssUrlPrefix + 'feature/rtn11_pasadena_cmmi/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==198');
}
if (SSContributor)
{
g_navNode_8_32=g_navNode_8.addNode('5573','Raytheon Teams With West Point',ssUrlPrefix + 'feature/rtn11_westpoint/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==198');
}
if (SSContributor)
{
g_navNode_8_34=g_navNode_8.addNode('5588','Raytheon Treats STEM Teachers to Pie on National Pi Day',ssUrlPrefix + 'feature/rtn11_pidayfollowup/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_35=g_navNode_8.addNode('5623','Raytheon Missile Warning Sensors Pass Key On-Orbit Test',ssUrlPrefix + 'feature/rtn11_mws/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_39=g_navNode_8.addNode('5657','RTSC President John Harris Provides Industry Keynote at NDIA Logistics Conference',ssUrlPrefix + 'feature/rtn11_ndia/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_40=g_navNode_8.addNode('5661','April Is Math Awareness Month',ssUrlPrefix + 'feature/rtn11_mathmonth/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_43=g_navNode_8.addNode('5700','Raytheon Climbs to No. 6 in Employer Ranking in \'Woman Engineer\' Magazine',ssUrlPrefix + 'feature/rtn11_womanengaward/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_45=g_navNode_8.addNode('5702','Raytheon-Supported Teams Engineer the Future at FIRST Robotics Championships',ssUrlPrefix + 'feature/rtn11_frstrbt/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_48=g_navNode_8.addNode('5709','Raytheon Celebrates Earth Day 2011',ssUrlPrefix + 'feature/rtn11_earth-day/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_50=g_navNode_8.addNode('5724','Mathletes\xae Gear Up for the Raytheon MATHCOUNTS\xae National Competition',ssUrlPrefix + 'feature/rtn11_mathcounts/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_51=g_navNode_8.addNode('5788','Raytheon Innovation Week - New ROI',ssUrlPrefix + 'feature/rtn11_NewROI/index.html','contributorOnly==true','graphicOnly==true','hideLeft==true','showNav==false','showSideBar==false','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_52=g_navNode_8.addNode('5725','2011 Raytheon MATHCOUNTS\xae National Champion Crowned ',ssUrlPrefix + 'feature/rtn11_mathcounts_winners/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_54=g_navNode_8.addNode('5466','Nearly \x241 Million Raised for Japan Disaster Relief',ssUrlPrefix + 'feature/rtn11_japan_close/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_56=g_navNode_8.addNode('5752','Texas High Schoolers Win National Rocketry Championship',ssUrlPrefix + 'feature/rtn11_tarc/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_57=g_navNode_8.addNode('5762','Students Score Touchdown at 2011 \'Science of Sports\' Science Fair ',ssUrlPrefix + 'feature/rtn11_scifair/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_59=g_navNode_8.addNode('5776','U.S. Navy Continues Production of ALR-67\x28V\x293 Digital Radar Warning Receivers',ssUrlPrefix + 'feature/rtn11_alr67/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_62=g_navNode_8.addNode('5835','Raytheon to Enhance Situational Awareness of KC-46 Tanker ',ssUrlPrefix + 'feature/sas11_alr69a/index.html','contributorOnly==true','hideLeft==true','showNav==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_63=g_navNode_8.addNode('5853','Raytheon Achieves 100 Percent on the Corporate Equality Index for Sixth Consecutive Year',ssUrlPrefix + 'feature/rtn11_glbt/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_66=g_navNode_8.addNode('5885','American Society for Healthcare Human Resources Administration\u2019s \x28ASHHRA\x29',ssUrlPrefix + 'feature/rps11_ashhra/index.html','contributorOnly==true','hideLeft==true','showNav==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_67=g_navNode_8.addNode('5890','Two Raytheon Businesses Recognized for Security Excellence',ssUrlPrefix + 'feature/rtn11_cogsaward/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_71=g_navNode_8.addNode('5882','Training Tomorrow\u2019s Air Traffic Controllers',ssUrlPrefix + 'feature/rtn11_training-atm/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_78=g_navNode_8.addNode('6028','Scott Wu Visit',ssUrlPrefix + 'feature/rtn11_wuvisit/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_8_78_0=g_navNode_8_78.addNode('6029','Scott Wu Visit 02',ssUrlPrefix + 'feature/rtn11_wuvisit/02/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_79=g_navNode_8.addNode('6033','Improved Weather Forecasting Moves One Step Closer to Reality',ssUrlPrefix + 'feature/rtn_sas11_viirs/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==170');
}
if (SSContributor)
{
g_navNode_8_80=g_navNode_8.addNode('6034','MODIS Eyes On\x3a Hurricane Irene',ssUrlPrefix + 'feature/rtn_sas11_modis/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_85=g_navNode_8.addNode('6048','Raytheon Pledges More Than \x241M in Scholarships and Grants for 2011-2012 School Year',ssUrlPrefix + 'feature/rtn11_schol/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_87=g_navNode_8.addNode('6087','Raytheon\'s Information Technology Organization Recognized as Industry Leader in Innovation',ssUrlPrefix + 'feature/rtn11_t100/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_88=g_navNode_8.addNode('6090','Raytheon Volunteers Support Wounded Warrior Project Soldier Ride',ssUrlPrefix + 'feature/rtn11_wwride/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_93=g_navNode_8.addNode('6102','Raytheon Announces Additional \x241M Grant for Teacher Scholarships',ssUrlPrefix + 'feature/rtn11_stemsummit/index.html','contributorOnly==true','graphicOnly==false','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_96=g_navNode_8.addNode('6118','\x241M Donation to the Museum of Science, Boston for Teacher Training',ssUrlPrefix + 'feature/rtn11_bmos/index.html','contributorOnly==true','hideLeft==true','showSideBar==true','showSocialMedia==false','showTopPage==true','sideBarWidth==220');
g_navNode_8_96_0=g_navNode_8_96.addNode('6119','What Is Engineering is Elementary\xae?',ssUrlPrefix + 'feature/rtn11_bmos/eie/index.html','hideLeft==true','showSideBar==false','showTopPage==true');
g_navNode_8_96_1=g_navNode_8_96.addNode('6120','Say Thank You to your Favorite Teacher on World Teachers\' Day',ssUrlPrefix + 'feature/rtn11_bmos/wtd11/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_97=g_navNode_8.addNode('6121','Raytheon \'Graduates\' Hundreds of Middle School Students as Honorary Engineers',ssUrlPrefix + 'feature/rtn11_stueng/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_101=g_navNode_8.addNode('6207','Raytheon Honors the U.S. Air Force for Historic Contributions Through GPS',ssUrlPrefix + 'feature/rtn11_iaf/index.html','contributorOnly==true','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true','sideBarWidth==198');
}
if (SSContributor)
{
g_navNode_8_103=g_navNode_8.addNode('6241','Raytheon Unlocks Employee Creativity to Support the Appsmart Market',ssUrlPrefix + 'feature/rtn11_appsmart_employee/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_104=g_navNode_8.addNode('6242','Raytheon Opens to Third-Parties for Innovative Ideas',ssUrlPrefix + 'feature/rtn11_appsmart_opendev/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_107=g_navNode_8.addNode('6253','Raytheon Extends Innovative Sum of all Thrills Experience From Theme Park to Cyberspace',ssUrlPrefix + 'feature/rtn11_soatvirt/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_108=g_navNode_8.addNode('6254','\'Sum of all Thrills\' Celebrates Second Anniversary',ssUrlPrefix + 'feature/rtn11_soatev/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_109=g_navNode_8.addNode('6255','Criminal Justice Program Honored',ssUrlPrefix + 'feature/rtn11_ndex/index.html','browserTitle==Criminal Justice Program Honored','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_111=g_navNode_8.addNode('6260','Sum of all Thrills Celebrates Second Year Anniversary ',ssUrlPrefix + 'feature/rtn11_soat/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_115=g_navNode_8.addNode('6276','\"Calling all Cars\u2026\"',ssUrlPrefix + 'feature/rtn11_lsa/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_119=g_navNode_8.addNode('6296','Veterans Day 2011 Photo Gallery',ssUrlPrefix + 'feature/rtn11_vetsdaygallery/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_120=g_navNode_8.addNode('6299','U.S. Chamber of Commerce Recognizes Raytheon\'s Wounded Warrior Outreach',ssUrlPrefix + 'feature/rtn11_veteransday/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_122=g_navNode_8.addNode('6305','Raytheon and New England Patriots Host 400 Wounded Warrior Project Guests',ssUrlPrefix + 'feature/rtn11_salute/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_123=g_navNode_8.addNode('6347','Raytheon\'s Traveler Management System Pilot Unveiled in Estonia',ssUrlPrefix + 'feature/rtn11_portera/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==false');
}
if (SSContributor)
{
g_navNode_8_124=g_navNode_8.addNode('6357','Raytheon to Deliver Modernized Investigative Case Management',ssUrlPrefix + 'feature/rtn11_ice/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_125=g_navNode_8.addNode('6360','Lynn Dugle Participates in Biennial UAE Festival of Thinkers',ssUrlPrefix + 'feature/rtn11_fot/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_128=g_navNode_8.addNode('6365','Raytheon-Supported STEM Camp Wins Presidential Award',ssUrlPrefix + 'feature/rtn11_reach/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_129=g_navNode_8.addNode('6381','American Education Week Focuses on Nation\u2019s Commitment to Students and Educators',ssUrlPrefix + 'feature/rtn11_aew/index.html','contributorOnly==true','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_132=g_navNode_8.addNode('6385','Raytheon Recognized as a \'2012 Diversity Leader\' by Profiles in Diversity Journal',ssUrlPrefix + 'feature/rtn11_divjo/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_138=g_navNode_8.addNode('6431','Raytheon Acquires Cybersecurity Firm Pikewerks',ssUrlPrefix + 'feature/rtn11_pikewerks/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_8_141=g_navNode_8.addNode('6443','U.K. Sentinel Recognized for In-Theater Support',ssUrlPrefix + 'feature/rtn11_sas_sentinel/index.html','contributorOnly==true','graphicOnly==true','hideLeft==true','showNav==false','showSideBar==true','showTopPage==true');
}
g_navNode_8_144=g_navNode_8.addNode('6455','Raytheon Acquires Cybersecurity and Software Engineering Firm Henggeler Computer Consultants',ssUrlPrefix + 'feature/rtn12_henggeler/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_8_145=g_navNode_8.addNode('6460','Raytheon Moves Up the List of Top 50 Employers in \'CAREERS \x26 the disABLED Magazine\'',ssUrlPrefix + 'feature/rtn12_top50emp/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_8_146=g_navNode_8.addNode('6468','AWIPS Team Recognized for NASA Space Shuttle Program Support',ssUrlPrefix + 'feature/rtn12_awips_nasa/index.html','hideLeft==true','showAddThis==true','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true');
g_navNode_8_149=g_navNode_8.addNode('6479','Raytheon Ethics VP Receives First Carol R. Marshall Award',ssUrlPrefix + 'feature/rtn12_cmrshlawd/index.html','hideLeft==true','showNav==true','showSideBar==true');
g_navNode_8_150=g_navNode_8.addNode('6489','MathAlive\x21 Powered by Raytheon to Debut at Smithsonian',ssUrlPrefix + 'feature/rtn12_malive/index.html','hideLeft==true','showNav==true','showSideBar==false','showTopPage==true');
g_navNode_8_151=g_navNode_8.addNode('6512','New Orleans Students Discover How Math and Science Make Fantasy a Reality at WeatherFest',ssUrlPrefix + 'feature/rtn12_weatherfest/index.html','hideLeft==true','showAddThis==false','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true');
g_navNode_8_152=g_navNode_8.addNode('6517','Raytheon and the New England Patriots Gear Up for the \'Super Bowl\' of Science Fairs',ssUrlPrefix + 'feature/rtn12_scifair/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_8_154=g_navNode_8.addNode('6520','AIAA Honors Two From Raytheon ',ssUrlPrefix + 'feature/rtn12_aiaaflws/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_8_156=g_navNode_8.addNode('6538','Raytheon\'s Rhoads Tops List of Boston\'s Most Powerful Women in Tech',ssUrlPrefix + 'feature/rtn12_rhoads/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9=g_navNode_Root.addNode('539','Technology \x26 Innovation News',ssUrlPrefix + 'technology/index.html','archiveQuery==xEffectiveDate \x3e\x3d \x6001/01/2007\x60  \x3cAND\x3e  xEffectiveDate \x3c \x6012/31/2007\x60','browserTitle==Technology \x26 Innovation News \x282012\x29','contributorOnly==false','graphicOnly==false','hideLeft==false','rssTitle==Raytheon Company\x3a Technology \x26 Innovation Features','rssUrl==http\x3a//www.raytheon.com/rss/technology/main.rss','showNav==TRUE','showSideBar==false','showTopPage==false');
g_navNode_9_0=g_navNode_9.addNode('3923','Previous Features',ssUrlPrefix + 'technology/archive/index.html','browserTitle==Technology \x26 Innovation News \x28Previous\x29','rssTitle==Technology \x26 Innovation Features','rssUrl==http\x3a//www.raytheon.com/rss/technology/main.rss','showNav==TRUE','showTopPage==TRUE');
g_navNode_9_1=g_navNode_9.addNode('2014','Technology \x26 Innovation Library',ssUrlPrefix + 'technology/technology_library/index.html','contributorOnly==false','graphicOnly==false','showNav==true','showSideBar==false','showTopPage==false');
if (SSContributor)
{
g_navNode_9_2=g_navNode_9.addNode('858','The Exoskeleton\'s Super Technology ',ssUrlPrefix + 'technology/rtn08_exoskeleton_gen1/index.html','contributorOnly==true','hideLeft==TRUE','showNav==true','showSideBar==true','showTopPage==false','sideBarWidth==180');
}
if (SSContributor)
{
g_navNode_9_3=g_navNode_9.addNode('4966','Time Magazine Names the XOS 2 Exoskeleton \"Most Awesomest\" Invention of 2010',ssUrlPrefix + 'technology/rtn08_exoskeleton/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','sideBarWidth==190');
}
if (SSContributor)
{
g_navNode_9_4=g_navNode_9.addNode('2488','Raytheon Awarded \x24154 Million for Taiwan Patriot Upgrade',ssUrlPrefix + 'technology/rtn09_pattaiwn/index.html','contributorOnly==true','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_5=g_navNode_9.addNode('2470','Raytheon Broadcasts Super Bowl XLIII to Troops Overseas',ssUrlPrefix + 'technology/rtn09_iissb/index.html','contributorOnly==true','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_6=g_navNode_9.addNode('2664','Raytheon Honored by Aviation Week for Satellite Shoot Down',ssUrlPrefix + 'technology/rtn09_aviation_wk_awd/index.html','contributorOnly==true','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_7=g_navNode_9.addNode('3529','\'Sum of all Thrills\' Experience Extended Online to MathMovesU.com ',ssUrlPrefix + 'technology/rtn09_nwmmuwrld/index.html','contributorOnly==true','graphicOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_8=g_navNode_9.addNode('3613','Raytheon Android Tactical System Featured in Forbes ',ssUrlPrefix + 'technology/rtn09_rats/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==198');
}
if (SSContributor)
{
g_navNode_9_9=g_navNode_9.addNode('3811','Raytheon Distributed Common Ground System Featured in The New York Times',ssUrlPrefix + 'technology/rtn10_dcgs_nytimes/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true');
}
if (SSContributor)
{
g_navNode_9_10=g_navNode_9.addNode('4588','FIAS 2010',ssUrlPrefix + 'technology/rtn10_fas/index.html','contributorOnly==true','hideLeft==true','refreshUrl==/newsroom/technology/rtn10_fas/features/directedeng','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_10_0=g_navNode_9_10.addNode('4631','Raytheon at Farnborough 2010 News',ssUrlPrefix + 'technology/rtn10_fas/features/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
g_navNode_9_10_0_0=g_navNode_9_10_0.addNode('4679','ATCOTS',ssUrlPrefix + 'technology/rtn10_fas/features/atcots/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
g_navNode_9_10_0_1=g_navNode_9_10_0.addNode('4666','Raytheon Announces Directed Energy Milestones',ssUrlPrefix + 'technology/rtn10_fas/features/directedeng/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
}
if (SSContributor)
{
g_navNode_9_11=g_navNode_9.addNode('4113','Missile Defense Agency Honors Raytheon Employees for Satellite Shoot Down',ssUrlPrefix + 'technology/rtn10_mda/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_12=g_navNode_9.addNode('5357','Raytheon Space Sensor to Help Scientists Better Understand Global Climate Change',ssUrlPrefix + 'technology/rtn11_spacesensor/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_13=g_navNode_9.addNode('5363','Aero India 2011',ssUrlPrefix + 'technology/rtn11_aeroindia/index.html','contributorOnly==true','graphicOnly==true','hideLeft==true','showAddThis==false','showSocialMedia==false','showTopPage==true');
g_navNode_9_13_0=g_navNode_9_13.addNode('5379','Raytheon Showcases Leading-Edge Technology',ssUrlPrefix + 'technology/rtn11_aeroindia/news01/index.html','contributorOnly==false','graphicOnly==true','hideLeft==true','showSideBar==true','showTopPage==true','sideBarWidth==190');
g_navNode_9_13_2=g_navNode_9_13.addNode('5467','Industry Partnerships - Key to Successful International Partnerships',ssUrlPrefix + 'technology/rtn11_aeroindia/news02/index.html','contributorOnly==false','graphicOnly==true','hideLeft==true','showNav==false','showSideBar==true','showTopPage==true','sideBarWidth==190');
g_navNode_9_13_3=g_navNode_9_13.addNode('5468','Raytheon Exhibits Silent Guardian for First Time in India',ssUrlPrefix + 'technology/rtn11_aeroindia/news03/index.html','contributorOnly==false','graphicOnly==true','hideLeft==true','showSideBar==true','showTopPage==true','sideBarWidth==190');
g_navNode_9_13_4=g_navNode_9_13.addNode('5469','Raytheon\u2019s maritime surveillance radars protect India\u2019s coastlines',ssUrlPrefix + 'technology/rtn11_aeroindia/news04/index.html','contributorOnly==false','graphicOnly==true','hideLeft==true','showSideBar==true','showTopPage==true','sideBarWidth==190');
g_navNode_9_13_5=g_navNode_9_13.addNode('5472','Javelin Weapon System\x3a Greatest Lethality and Lowest Weight in Its Class',ssUrlPrefix + 'technology/rtn11_aeroindia/news05/index.html','contributorOnly==false','graphicOnly==true','hideLeft==true','showSideBar==true','showTopPage==true','sideBarWidth==190');
g_navNode_9_13_6=g_navNode_9_13.addNode('5473','Raytheon ready to arm the Indian Medium Multi Role Combat Aircraft',ssUrlPrefix + 'technology/rtn11_aeroindia/news06/index.html','contributorOnly==false','graphicOnly==true','hideLeft==true','showSideBar==true','showTopPage==true','sideBarWidth==190');
g_navNode_9_13_7=g_navNode_9_13.addNode('5475','Raytheon\u2019s Electronic Warfare Systems Answer India\u2019s Emerging Defense Needs',ssUrlPrefix + 'technology/rtn11_aeroindia/news07/index.html','contributorOnly==false','graphicOnly==true','hideLeft==true','showSideBar==true','showTopPage==true','sideBarWidth==190');
g_navNode_9_13_8=g_navNode_9_13.addNode('5476','Threats to India from the air are a concern, but can be defeated',ssUrlPrefix + 'technology/rtn11_aeroindia/news08/index.html','contributorOnly==false','graphicOnly==true','hideLeft==true','showSideBar==true','showTopPage==true','sideBarWidth==190');
}
if (SSContributor)
{
g_navNode_9_14=g_navNode_9.addNode('5415','Raytheon Participates in the American Meteorological Society\'s Annual Meeting ',ssUrlPrefix + 'technology/rtn11_ams/index.html','contributorOnly==true','hideLeft==true','showNav==false','showSideBar==true','showSocialMedia==true','showTopPage==true','sideBarWidth==190');
g_navNode_9_14_0=g_navNode_9_14.addNode('5419','Raytheon Presenter Schedule',ssUrlPrefix + 'technology/rtn11_ams/rtn10_ams_agenda/index.html','showTopPage==true');
g_navNode_9_14_1=g_navNode_9_14.addNode('5420','Virtual Trade Show',ssUrlPrefix + 'technology/rtn11_ams/rtn10_ams_virtual/index.html','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_18=g_navNode_9.addNode('5478','2011 IDEX Trade Show',ssUrlPrefix + 'technology/idex2011/index.html','browserTitle==2011 IDEX Trade Show','contributorOnly==true','hideLeft==true','showContact_Media==true','showSideBar==true','showSocialMedia==true','showTopPage==true','sideBarWidth==200');
g_navNode_9_18_0=g_navNode_9_18.addNode('5479','patriot',ssUrlPrefix + 'technology/idex2011/patriot/index.html','browserTitle==2011 IDEX Trade Show','hideLeft==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
g_navNode_9_18_1=g_navNode_9_18.addNode('5480','anchutz',ssUrlPrefix + 'technology/idex2011/anchutz/index.html','browserTitle==2011 IDEX Trade Show','hideLeft==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
g_navNode_9_18_2=g_navNode_9_18.addNode('5481','virtsim',ssUrlPrefix + 'technology/idex2011/virtsim/index.html','browserTitle==2011 IDEX Trade Show','hideLeft==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
g_navNode_9_18_4=g_navNode_9_18.addNode('5493','pilot',ssUrlPrefix + 'technology/idex2011/pilot/index.html','browserTitle==2011 IDEX Trade Show','contributorOnly==false','hideLeft==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
}
if (SSContributor)
{
g_navNode_9_19=g_navNode_9.addNode('5508','Defense Daily Highlights Raytheon\'s Advancements With Gallium Nitride \x28GaN\x29 Technology',ssUrlPrefix + 'technology/rtn11_gan/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_20=g_navNode_9.addNode('5590','Raytheon Showcases Integrated Air \x26 Missile Defense Solutions at Conference',ssUrlPrefix + 'technology/rtn11_mdac/index.html','browserTitle==Raytheon Showcases Integrated Air \x26 Missile Defense Solutions at Conference','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==225');
}
if (SSContributor)
{
g_navNode_9_21=g_navNode_9.addNode('5629','National Space Symposium 2011',ssUrlPrefix + 'technology/rtn11_nss/index.html','contributorOnly==true','graphicOnly==true','hideLeft==true','showTopPage==true');
g_navNode_9_21_0=g_navNode_9_21.addNode('5667','Featured Capabilities',ssUrlPrefix + 'technology/rtn11_nss/capabilities/index.html','contributorOnly==false','hideLeft==true','showTopPage==true');
g_navNode_9_21_2=g_navNode_9_21.addNode('5637','Raytheon Multiband Hyperspectral',ssUrlPrefix + 'technology/rtn11_nss/news02/index.html','graphicOnly==true','hideLeft==true','showSideBar==true','showTopPage==true','sideBarWidth==190');
g_navNode_9_21_3=g_navNode_9_21.addNode('5638','Raytheon\x3a Mission Support',ssUrlPrefix + 'technology/rtn11_nss/news03/index.html','contributorOnly==false','graphicOnly==true','hideLeft==true','showSideBar==false','showTopPage==true','sideBarWidth==190');
g_navNode_9_21_4=g_navNode_9_21.addNode('5635','Sensing\x3a SSA Radars',ssUrlPrefix + 'technology/rtn11_nss/news04/index.html','graphicOnly==true','hideLeft==true','showSideBar==true','showTopPage==true','sideBarWidth==190');
g_navNode_9_21_5=g_navNode_9_21.addNode('5636','Raytheon\x3a A C3I Leader',ssUrlPrefix + 'technology/rtn11_nss/news05/index.html','graphicOnly==true','hideLeft==true','showSideBar==true','showTopPage==true','sideBarWidth==190');
}
if (SSContributor)
{
g_navNode_9_22=g_navNode_9.addNode('5632','Continuous Process Improvement Key to Customer Success',ssUrlPrefix + 'technology/rtn11_indstrywk/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_23=g_navNode_9.addNode('5640','Dr. Taylor W. Lawrence addresses international education conference in Dubai',ssUrlPrefix + 'technology/rms11_borders/index.html','browserTitle==Dr. Taylor W. Lawrence addresses international education conference in Dubai ','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==225');
}
if (SSContributor)
{
g_navNode_9_24=g_navNode_9.addNode('5643','The Missile Defense Agency awarded Raytheon a \x24312 million manufacturing contract for the Standard Missile-3 Block IB program ',ssUrlPrefix + 'technology/rms11_sm-3mca/index.html','browserTitle==The Missile Defense Agency awarded Raytheon a \x24312 million manufacturing contract for the Standard Missile-3 Block IB program. ','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
}
if (SSContributor)
{
g_navNode_9_25=g_navNode_9.addNode('5644','MODIS Monitors Devastation in Japan',ssUrlPrefix + 'technology/rtn11_modisjapan/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_26=g_navNode_9.addNode('5658','Raytheon Wins Award for Next Generation Standard Missile-3 Interceptor',ssUrlPrefix + 'technology/rms11_sm3_tsc/index.html','browserTitle==Raytheon wins award for next generation Standard Missile-3 interceptor','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
}
if (SSContributor)
{
g_navNode_9_28=g_navNode_9.addNode('5754','Defense Intelligence Information Enterprise \x28DI2E\x29 Conference',ssUrlPrefix + 'technology/rtn11_di2e/index.html','browserTitle==2011 Defense Intelligence Information Enterprise \x28DI2E\x29 Conference','contributorOnly==true','hideLeft==true','showContact_Media==true','showSideBar==true','showSocialMedia==true','showTopPage==true','sideBarWidth==175');
g_navNode_9_28_0=g_navNode_9_28.addNode('5766','Featured Capabilities',ssUrlPrefix + 'technology/rtn11_di2e/capabilities/index.html','browserTitle==DI2E Featured Capabilities','hideLeft==true','showContact_Media==true','showSocialMedia==true');
}
if (SSContributor)
{
g_navNode_9_29=g_navNode_9.addNode('5660','2011 Sea Air Space Exposition ',ssUrlPrefix + 'technology/rtn11_sastradeshow/index.html','browserTitle==2011 Sea, Air \x26 Space Trade Show','contributorOnly==true','hideLeft==true','showContact_Media==true','showSideBar==true','showSocialMedia==true','showTopPage==true','sideBarWidth==200');
}
if (SSContributor)
{
g_navNode_9_30=g_navNode_9.addNode('5668','Raytheon\'s SM-3 Block IA successfully completed its 19th intercept',ssUrlPrefix + 'technology/rms11_sm3_ftm15/index.html','browserTitle==Raytheon\\x27s SM-3 Block IA successfully completed its 19th intercept','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==220');
}
if (SSContributor)
{
g_navNode_9_31=g_navNode_9.addNode('5681','Raytheon at Army Aviation Association of America Professional Forum and Exposition 2011',ssUrlPrefix + 'technology/rms11_aaaa/index.html','browserTitle==Raytheon at Army Aviation Association of America Professional Forum and Exposition 2011','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==220');
}
if (SSContributor)
{
g_navNode_9_32=g_navNode_9.addNode('5750','New \'Technology Today\' Energy Issue Is Now Available ',ssUrlPrefix + 'technology/rtn11_tech_today_1/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_33=g_navNode_9.addNode('5765','Raytheon\'s APG-79 AESA Radar Is Integral Component of Super Hornet',ssUrlPrefix + 'technology/rtn11_hornet/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_34=g_navNode_9.addNode('5771','Raytheon Huntsville Factory Ground Breaking',ssUrlPrefix + 'technology/huntsville_06-11/index.html','browserTitle==Huntsville Factory Ground Breaking','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
}
if (SSContributor)
{
g_navNode_9_35=g_navNode_9.addNode('5811','National Defense Features Raytheon\'s Advancements in GaN Technology',ssUrlPrefix + 'technology/rtn11_ndgan/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showSocialMedia==true');
}
if (SSContributor)
{
g_navNode_9_36=g_navNode_9.addNode('5851','Raytheon AWIPS Team Triples Bandwidth on NWS\' Satellite Broadcast Network',ssUrlPrefix + 'technology/rtn11_awips/index.html','browserTitle==Raytheon AWIPS Team Triples Bandwidth','contributorOnly==true','hideLeft==true','showContact_Media==true','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_37=g_navNode_9.addNode('5852','Raytheon facility earns Cogswell Award for outstanding security practices',ssUrlPrefix + 'technology/rms11_cogswell/index.html','browserTitle==Raytheon Louisville Receives Cogswell Award','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
}
if (SSContributor)
{
g_navNode_9_38=g_navNode_9.addNode('5856','U.S. Army Awards Raytheon \x2436 Million to Complete Excalibur Ib Development',ssUrlPrefix + 'technology/rms11_excalibur/index.htm','browserTitle==U.S. Army Awards Raytheon \x2436 Million to Complete Excalibur Ib Development','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
}
if (SSContributor)
{
g_navNode_9_39=g_navNode_9.addNode('5866','Raytheon UK Awarded Four-Year Support Contract for U.K. Paveway\u2122',ssUrlPrefix + 'technology/rms11_paveway/index.html','browserTitle==Raytheon UK Awarded Four-Year Support Contract for U.K. Paveway','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
}
if (SSContributor)
{
g_navNode_9_40=g_navNode_9.addNode('5870','Raytheon and SafeNet Deliver Next Generation Email Malware Detection Technology',ssUrlPrefix + 'technology/rtn11_rshield/index.html','browserTitle==Raytheon and SafeNet Deliver Next Generation Email Malware Detection Technology','contributorOnly==true','hideLeft==true','showContact_Media==true','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_41=g_navNode_9.addNode('5716','Raytheon\'s Space Fence Capabilities Featured on TechCrunch',ssUrlPrefix + 'technology/rtn11_sfence/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_42=g_navNode_9.addNode('5871','Controlled Impact Rescue Tool \x28CIRT\x29 Now Available Through the GSA Schedule',ssUrlPrefix + 'technology/rtn11_cirt/index.html','browserTitle==Controlled Impact Rescue Tool \x28CIRT\x29 Now Available Through the GSA Schedule','contributorOnly==true','hideLeft==true','showContact_Media==true','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_43=g_navNode_9.addNode('5898','N-DEx Is Changing How Law Enforcement Fights Crime and Terrorism ',ssUrlPrefix + 'technology/rtn11_ndex/index.html','contributorOnly==true','hideLeft==true','showAddThis==false','showContact_Media==true','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true','smprShowAnimation==false');
}
if (SSContributor)
{
g_navNode_9_44=g_navNode_9.addNode('5913','Raytheon Completes Fifth Small Diameter Bomb II Tri-Mode Seeker in New Factory ',ssUrlPrefix + 'technology/rms11_trimode/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
}
if (SSContributor)
{
g_navNode_9_45=g_navNode_9.addNode('5919','Raytheon Missile Systems Sponsors Math and Science Camp for Middle School Girls',ssUrlPrefix + 'technology/rms11_missadventures/index.html','browserTitle==Raytheon Missile Systems Sponsors Math and Science Camp for Middle School Girls','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
}
if (SSContributor)
{
g_navNode_9_46=g_navNode_9.addNode('5920','Raytheon Chosen by DARPA for Critical Cybersecurity Research Program on Insider Threats',ssUrlPrefix + 'technology/rtn11_darpa/index.html','contributorOnly==true','hideLeft==true','showContact_Media==true','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_47=g_navNode_9.addNode('5923','2011 Space and Missile Defense Conference',ssUrlPrefix + 'technology/rtn11_smdc/index.html','contributorOnly==true','hideLeft==true','navStartLevel==2','showNav==false','showSideBar==true','showTopPage==true','sideBarWidth==200');
g_navNode_9_47_0=g_navNode_9_47.addNode('5925','Raytheon SM-3 Featured in Military Technology',ssUrlPrefix + 'technology/rtn11_smdc/news2/index.html','hideLeft==true','showNav==false','showSideBar==true','showTopPage==true');
g_navNode_9_47_1=g_navNode_9_47.addNode('5924','Raytheon Showcases the SM-3 and SM-6 at Space and Missile Defense Conference',ssUrlPrefix + 'technology/rtn11_smdc/news1/index.html','hideLeft==true','showNav==false','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_48=g_navNode_9.addNode('5971','AUVSI',ssUrlPrefix + 'technology/rtn11_auvsi/index.html','browserTitle==AUVSI Unmanned Systems North America 2011','contributorOnly==true','hideLeft==true','showContact_Media==true','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true','sideBarWidth==220');
g_navNode_9_48_0=g_navNode_9_48.addNode('5974','Raytheon Approach to DARPA Project Applicable for all Military Services',ssUrlPrefix + 'technology/rtn11_auvsi/pcas/index.html','hideLeft==true','showContact_Media==true','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true');
g_navNode_9_48_1=g_navNode_9_48.addNode('5975','Scavenger',ssUrlPrefix + 'technology/rtn11_auvsi/scavenger/index.html','hideLeft==true','showContact_Media==true','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true');
g_navNode_9_48_2=g_navNode_9_48.addNode('5976','Detecting the Undetectable\x3a Hyperspectral Sensors Meet Critical Military and Civilian Needs',ssUrlPrefix + 'technology/rtn11_auvsi/hyperspectral/index.html','hideLeft==true','showContact_Media==true','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true');
g_navNode_9_48_4=g_navNode_9_48.addNode('5983','Common Ground Control Systems',ssUrlPrefix + 'technology/rtn11_auvsi/cgcs/index.html','hideLeft==true','showContact_Media==true','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true');
g_navNode_9_48_5=g_navNode_9_48.addNode('5996','DCGS upgrades Provide Cost Efficiencies',ssUrlPrefix + 'technology/rtn11_auvsi/dcgs/index.html','hideLeft==true','showContact_BusinessDevelopment==false','showContact_Media==true','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_49=g_navNode_9.addNode('5978','Raytheon Completes First Flight of Improved Standard Missile-3',ssUrlPrefix + 'technology/rms11_ftm16/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==208');
}
if (SSContributor)
{
g_navNode_9_50=g_navNode_9.addNode('5979','Raytheon at a Tier 2 Trade Show',ssUrlPrefix + 'technology/rtn11_tier2/index.html','contributorOnly==true','hideLeft==true','showAddThis==false','showSideBar==true','showTopPage==true');
g_navNode_9_50_0=g_navNode_9_50.addNode('5980','Post 1',ssUrlPrefix + 'technology/rtn11_tier2/post1/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_50_1=g_navNode_9_50.addNode('5981','Post 2',ssUrlPrefix + 'technology/rtn11_tier2/post2/index.html','hideLeft==true','showTopPage==true');
g_navNode_9_50_2=g_navNode_9_50.addNode('5982','Post 3',ssUrlPrefix + 'technology/rtn11_tier2/post3/index.html','hideLeft==true','showTopPage==true');
g_navNode_9_50_3=g_navNode_9_50.addNode('5984','Posts Archive',ssUrlPrefix + 'technology/rtn11_tier2/archive/index.html','hideLeft==true','showNav==false','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_51=g_navNode_9.addNode('5985','New 4D Technology Brings More Sensory Experience to the Cockpit',ssUrlPrefix + 'technology/4d-technology-cockpit/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true');
}
if (SSContributor)
{
g_navNode_9_52=g_navNode_9.addNode('5986','CNN Money Covers Raytheon\'s 4D Walk-In Flight Simulator',ssUrlPrefix + 'technology/cnn-4d-simulator/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true');
}
if (SSContributor)
{
g_navNode_9_53=g_navNode_9.addNode('5987','Raytheon\'s 4D Tech Featured on SmartPlanet',ssUrlPrefix + 'technology/global-isr-smartplanet/index.html','contributorOnly==true','hideLeft==true','showNav==true');
}
if (SSContributor)
{
g_navNode_9_54=g_navNode_9.addNode('5988',' Making Intelligence Actionable',ssUrlPrefix + 'technology/global-isr/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true');
}
if (SSContributor)
{
g_navNode_9_55=g_navNode_9.addNode('5989','Global ISR Interactive Demo',ssUrlPrefix + 'technology/global-isr-smartplanet/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true');
}
if (SSContributor)
{
g_navNode_9_56=g_navNode_9.addNode('5990','Detecting the Undetectable\x3a Hyperspectral Sensors Meet Critical Military and Civilian Needs',ssUrlPrefix + 'technology/hyperspectral/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true');
}
if (SSContributor)
{
g_navNode_9_57=g_navNode_9.addNode('5991','Raytheon\'s Directed Energy Capabilities Featured on PopSci',ssUrlPrefix + 'technology/directed-energy-popsci/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true');
}
if (SSContributor)
{
g_navNode_9_58=g_navNode_9.addNode('5992','Raytheon - World Leader in Air Traffic Management',ssUrlPrefix + 'technology/air-traffic/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true');
}
if (SSContributor)
{
g_navNode_9_59=g_navNode_9.addNode('6065','GEOINT',ssUrlPrefix + 'technology/rtn11_geoint/index.html','browserTitle==GEOINT 2011 Symposium','contributorOnly==true','hideLeft==true','refreshUrl==http\x3a//www.raytheon.com/media/geoint2011','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true','sideBarWidth==220');
}
if (SSContributor)
{
g_navNode_9_60=g_navNode_9.addNode('6179','GEOINT 2011 Mobile Companion',ssUrlPrefix + 'technology/rtn11_geoint_app/index.html','contributorOnly==true','hideLeft==true','refreshUrl==http\x3a//www.raytheon.com/media/geoint2011/2011/10/12/geoint-app/','showNav==true','showSideBar==true','showSocialMedia==false','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_61=g_navNode_9.addNode('6066','Raytheon Participates in 2011 Defence Security and Equipment International ',ssUrlPrefix + 'technology/rms11_dsei/index.html','browserTitle==Raytheon Participates in 2011 Defense Security and Equipment International ','contributorOnly==true','hideLeft==true','showNav==false','showSideBar==true','showSocialMedia==true');
g_navNode_9_61_0=g_navNode_9_61.addNode('6068','archive',ssUrlPrefix + 'technology/rms11_dsei/archive/index.html','browserTitle==Posts Archive','showNav==false','showTopPage==true');
g_navNode_9_61_1=g_navNode_9_61.addNode('6071','video1',ssUrlPrefix + 'technology/rms11_dsei/video1/index.html','browserTitle==Video 01','hideLeft==true','showTopPage==true');
g_navNode_9_61_2=g_navNode_9_61.addNode('6072','datalink',ssUrlPrefix + 'technology/rms11_dsei/datalink/index.html','browserTitle==Top Story - Data Link','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_61_3=g_navNode_9_61.addNode('6075','lgr',ssUrlPrefix + 'technology/rms11_dsei/lgr/index.html','browserTitle==Top Story - LGR','contributorOnly==false','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_61_4=g_navNode_9_61.addNode('6076','griffin',ssUrlPrefix + 'technology/rms11_dsei/griffin/index.html','browserTitle==Top Story - Griffin','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_61_5=g_navNode_9_61.addNode('6077','ram',ssUrlPrefix + 'technology/rms11_dsei/ram/index.html','browserTitle==Top Story - RAM Block 2','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_61_6=g_navNode_9_61.addNode('6078','atm',ssUrlPrefix + 'technology/rms11_dsei/atm/index.html','browserTitle==Top Story - Air Traffic Management Feature','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_61_7=g_navNode_9_61.addNode('6079','bbn',ssUrlPrefix + 'technology/rms11_dsei/bbn/index.html','browserTitle==Top Story - BBN Boomerang','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_61_8=g_navNode_9_61.addNode('6080','psds2',ssUrlPrefix + 'technology/rms11_dsei/psds2/index.html','browserTitle==Top Story - PSDS2','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_61_9=g_navNode_9_61.addNode('6081','sma',ssUrlPrefix + 'technology/rms11_dsei/sma/index.html','browserTitle==Top Story - Small Mission Aircraft','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_61_10=g_navNode_9_61.addNode('6082','destroyer',ssUrlPrefix + 'technology/rms11_dsei/destroyer/index.html','browserTitle==Top Story - Destroyer','hideLeft==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_62=g_navNode_9.addNode('6088','Raytheon at AFA Air \x26 Space Conference and Technology Exposition',ssUrlPrefix + 'technology/rtn_sas11_afa/index.html','contributorOnly==true','graphicOnly==false','hideLeft==true','showNav==false','showSideBar==true','showTopPage==true');
if (SSContributor)
{
g_navNode_9_62_0=g_navNode_9_62.addNode('6106','Posts Archive',ssUrlPrefix + 'technology/rtn_sas11_afa/archive/index.html','contributorOnly==true','hideLeft==true','showTopPage==true');
}
g_navNode_9_62_1=g_navNode_9_62.addNode('6107','AFA Annual Air \x26 Space Conference and Technology Exposition',ssUrlPrefix + 'technology/rtn_sas11_afa/story1/index.html','hideLeft==true','showNav==false','showSideBar==true','showTopPage==true');
g_navNode_9_62_2=g_navNode_9_62.addNode('6108','RACR Stands Ready to Provide USAF With Proven AESA Technology for the F-16',ssUrlPrefix + 'technology/rtn_sas11_afa/story2/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_62_3=g_navNode_9_62.addNode('6109','Global Hawk Sensor Program Continues to Meet Cost and Schedule Commitments',ssUrlPrefix + 'technology/rtn_sas11_afa/story3/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_62_4=g_navNode_9_62.addNode('6110','Raytheon\'s Space Fence Will Provide Unprecedented Sensitivity in Tracking Objects in Space',ssUrlPrefix + 'technology/rtn_sas11_afa/story4/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
}
g_navNode_9_63=g_navNode_9.addNode('6127','VIIRS Sensor Powered On',ssUrlPrefix + 'technology/rtn11_npp/index.html','contributorOnly==false','graphicOnly==true','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_63_0=g_navNode_9_63.addNode('6209','NASA Videos',ssUrlPrefix + 'technology/rtn11_npp/nasavideos/index.html','hideLeft==true','showTopPage==true');
g_navNode_9_63_1=g_navNode_9_63.addNode('6288','NPP Launch',ssUrlPrefix + 'technology/rtn11_npp/launch/index.html','contributorOnly==false','hideLeft==true','showTopPage==true');
if (SSContributor)
{
g_navNode_9_64=g_navNode_9.addNode('6167','Raytheon\'s Air Traffic Management Solutions on Display at ATCA 2011 Conference',ssUrlPrefix + 'technology/rtn11_atca_conference/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true');
}
if (SSContributor)
{
g_navNode_9_65=g_navNode_9.addNode('6168','Combating the Advanced Persistent Threat Webinar',ssUrlPrefix + 'technology/rtn11_apt_invite/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==false','showSocialMedia==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_66=g_navNode_9.addNode('6172','New Satellite Formation on Horizon',ssUrlPrefix + 'technology/rtn11_spacenews/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_67=g_navNode_9.addNode('6197','Raytheon at the AUSA 2011 Annual Meeting \x26 Exposition',ssUrlPrefix + 'technology/rtn11_ausa/index.html','contributorOnly==true','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_67_0=g_navNode_9_67.addNode('6198','AUSA 2011 Annual Meeting \x26 Exposition Posts Archive',ssUrlPrefix + 'technology/rtn11_ausa/archive/index.html','hideLeft==true','showTopPage==true');
g_navNode_9_67_1=g_navNode_9_67.addNode('6199','Measuring Precision Engagement in a Whole New Way',ssUrlPrefix + 'technology/rtn11_ausa/news1/index.html','hideLeft==true','showNav==false','showSideBar==true');
g_navNode_9_67_2=g_navNode_9_67.addNode('6200','Successful GEM-T Test Firing Another Milestone in Patriot Modernization',ssUrlPrefix + 'technology/rtn11_ausa/news2/index.html','hideLeft==true','showNav==false','showSideBar==true');
g_navNode_9_67_3=g_navNode_9_67.addNode('6201','Photo\x3a Precision Photo Gallery',ssUrlPrefix + 'technology/rtn11_ausa/news3/index.html','hideLeft==true','showNav==false','showSideBar==false');
g_navNode_9_67_4=g_navNode_9_67.addNode('6202','Video\x3a AUSA 2011 \x26\x238212\x3b Getting Ready ...',ssUrlPrefix + 'technology/rtn11_ausa/news4/index.html','hideLeft==true','showNav==false','showSideBar==false');
g_navNode_9_67_5=g_navNode_9_67.addNode('6203','Speed-of-Light Technology Can Shield UASs',ssUrlPrefix + 'technology/rtn11_ausa/news5/index.html','hideLeft==true','showNav==false','showSideBar==true');
g_navNode_9_67_6=g_navNode_9_67.addNode('6204','Video\x3a Raytheon Vice President Michelle Lohmeier Discusses Excalibur\'s Capabilities',ssUrlPrefix + 'technology/rtn11_ausa/news6/index.html','hideLeft==true','showNav==false','showSideBar==false');
g_navNode_9_67_7=g_navNode_9_67.addNode('6205','Video\x3a Mike Booen Discusses CIRCM',ssUrlPrefix + 'technology/rtn11_ausa/news7/index.html','hideLeft==true','showNav==false','showSideBar==false');
g_navNode_9_67_8=g_navNode_9_67.addNode('6206','Infographic\x3a Precision Defined',ssUrlPrefix + 'technology/rtn11_ausa/news8/index.html','hideLeft==true','showNav==false','showSideBar==false');
g_navNode_9_67_9=g_navNode_9_67.addNode('6215','Closer Collaboration and Industry Investment Make Intelligence-Sharing',ssUrlPrefix + 'technology/rtn11_ausa/news9/index.html','hideLeft==true','showNav==false','showSideBar==false');
g_navNode_9_67_10=g_navNode_9_67.addNode('6216','State of the Art Display Unit for Helicopters on Display at AUSA',ssUrlPrefix + 'technology/rtn11_ausa/news10/index.html','hideLeft==true','showNav==false','showSideBar==true');
g_navNode_9_67_11=g_navNode_9_67.addNode('6217','Increasing Aircraft Survivability by Mitigating Top Causes of Loss and Fatalities',ssUrlPrefix + 'technology/rtn11_ausa/news11/index.html','hideLeft==true','showNav==false','showSideBar==true');
g_navNode_9_67_12=g_navNode_9_67.addNode('6218','Revolutionary Surveillance Capability Fills Gap in Early Warning Systems',ssUrlPrefix + 'technology/rtn11_ausa/news12/index.html','hideLeft==true','showNav==false','showSideBar==true');
g_navNode_9_67_13=g_navNode_9_67.addNode('6219','Missile Defense Agency Airborne Infrared Program Integral to Safeguarding the U.S. ',ssUrlPrefix + 'technology/rtn11_ausa/news13/index.html','hideLeft==true','showNav==false','showSideBar==true');
g_navNode_9_67_14=g_navNode_9_67.addNode('6221','NATO\x3a Moving in the Right Direction When It Comes to Common Ground',ssUrlPrefix + 'technology/rtn11_ausa/news14/index.html','graphicOnly==false','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_67_15=g_navNode_9_67.addNode('6222','Warfighter FOCUS Program Provides Significant Cost Savings to U.S. Army',ssUrlPrefix + 'technology/rtn11_ausa/news15/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_67_16=g_navNode_9_67.addNode('6223','Battlefield Networks\x3a The Power to Protect and Save Lives',ssUrlPrefix + 'technology/rtn11_ausa/news16/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_67_17=g_navNode_9_67.addNode('6224','Infographic\x3a The Power of the Network',ssUrlPrefix + 'technology/rtn11_ausa/news17/index.html','hideLeft==true','showSideBar==false','showTopPage==true');
g_navNode_9_67_18=g_navNode_9_67.addNode('6225','Video\x3a Dan Crowley on Expanding Network Capabilities',ssUrlPrefix + 'technology/rtn11_ausa/news18/index.html','hideLeft==true','showSideBar==false','showTopPage==true');
g_navNode_9_67_19=g_navNode_9_67.addNode('6226','Life-Saving Technology Helps Protect Soldiers From Enemy Snipers',ssUrlPrefix + 'technology/rtn11_ausa/news19/index.html','hideLeft==true','showSideBar==false','showTopPage==true');
g_navNode_9_67_20=g_navNode_9_67.addNode('6227','News20',ssUrlPrefix + 'technology/rtn11_ausa/news20/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_68=g_navNode_9.addNode('6208','Raytheon Well-Positioned for Growth at the 2011 International Seoul Air Show  ',ssUrlPrefix + 'technology/rtn11_kas/index.html','contributorOnly==true','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_68_0=g_navNode_9_68.addNode('6210','RACR Positions for Market Opportunities in Asia',ssUrlPrefix + 'technology/rtn11_kas/post1/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_68_1=g_navNode_9_68.addNode('6211','Boeing and Raytheon Unveil First F-15SE AESA Radar Simulator Demo in Seoul',ssUrlPrefix + 'technology/rtn11_kas/post2/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_68_2=g_navNode_9_68.addNode('6212','\x09Raytheon Highlights Air-to-Air and Air-to-Surface Weapons in Korea',ssUrlPrefix + 'technology/rtn11_kas/post3/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_68_3=g_navNode_9_68.addNode('6213','International Industry Partnerships Drive Raytheon\u2019s Success',ssUrlPrefix + 'technology/rtn11_kas/post4/index.html','hideLeft==true','showSideBar==false','showTopPage==true');
g_navNode_9_68_4=g_navNode_9_68.addNode('6232','Raytheon Radars are Critical Components of Integrated Air and Missile Defense',ssUrlPrefix + 'technology/rtn11_kas/post5/index.html','hideLeft==true','showTopPage==true');
g_navNode_9_68_5=g_navNode_9_68.addNode('6233','Raytheon Radars Ensure No Surprises in Volatile Parts of the World',ssUrlPrefix + 'technology/rtn11_kas/post6/index.html','hideLeft==true','showTopPage==true');
g_navNode_9_68_6=g_navNode_9_68.addNode('6214','Post Archive',ssUrlPrefix + 'technology/rtn11_kas/archive/index.html','hideLeft==true','showTopPage==true');
g_navNode_9_68_7=g_navNode_9_68.addNode('6237','Raytheon Radars Play a Critical Role in Pacific Rim Security',ssUrlPrefix + 'technology/rtn11_kas/post8/index.html','hideLeft==true','showNav==false','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_69=g_navNode_9.addNode('6272','Two Raytheon Capabilities Named in C4ISR Journal\'s Big 25 for 2011',ssUrlPrefix + 'technology/rtn11_c4isr_big25/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_70=g_navNode_9.addNode('6285','Raytheon features diverse portfolio of innovative technologies at 2011 Dubai Air Show',ssUrlPrefix + 'technology/rtn11_dubai/index.html','browserTitle==Raytheon features diverse portfolio of innovative technologies at 2011 Dubai Air Show','contributorOnly==true','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_70_0=g_navNode_9_70.addNode('6308','Dubai 2011 Air Show Posts Archive',ssUrlPrefix + 'technology/rtn11_dubai/archive/index.html','contributorOnly==false','hideLeft==true','showTopPage==true');
g_navNode_9_70_1=g_navNode_9_70.addNode('6309','Raytheon committed to Middle East partnerships',ssUrlPrefix + 'technology/rtn11_dubai/news1/index.html','hideLeft==true','showSideBar==true');
g_navNode_9_70_2=g_navNode_9_70.addNode('6311','Raytheon\'s Kevin Massengill on the company\'s presence in the Middle East',ssUrlPrefix + 'technology/rtn11_dubai/news2/index.html','hideLeft==true','showTopPage==false');
g_navNode_9_70_3=g_navNode_9_70.addNode('6313','Redefining precision engagement for international allies',ssUrlPrefix + 'technology/rtn11_dubai/news4/index.html','hideLeft==true','showSideBar==true');
g_navNode_9_70_4=g_navNode_9_70.addNode('6314','Precision effects photo gallery ',ssUrlPrefix + 'technology/rtn11_dubai/news5/index.html','hideLeft==true');
g_navNode_9_70_5=g_navNode_9_70.addNode('6315','Raytheon\'s Michelle Lohmeier on why precision effects are critical to the warfighter',ssUrlPrefix + 'technology/rtn11_dubai/news6/index.html','hideLeft==true');
g_navNode_9_70_6=g_navNode_9_70.addNode('6317','NASAMS - The Medium-Range Air and Missile Defense System of Choice',ssUrlPrefix + 'technology/rtn11_dubai/news7/index.html','hideLeft==true','showSideBar==true');
g_navNode_9_70_7=g_navNode_9_70.addNode('6318','Raytheon offers Air Traffic Management solutions to the Middle East',ssUrlPrefix + 'technology/rtn11_dubai/news8/index.html','hideLeft==true','showSideBar==true');
g_navNode_9_70_8=g_navNode_9_70.addNode('6319','Raytheon\'s Dan Crowley on the company\'s Air Traffic Management solutions',ssUrlPrefix + 'technology/rtn11_dubai/news9/index.html','hideLeft==true','showSideBar==false');
g_navNode_9_70_9=g_navNode_9_70.addNode('6323','AESA radar technology offers benefits to Middle East',ssUrlPrefix + 'technology/rtn11_dubai/news10/index.html','hideLeft==true','showSideBar==true');
g_navNode_9_70_10=g_navNode_9_70.addNode('6324','Infographic\x3a Raytheon\'s Special Mission Aircraft',ssUrlPrefix + 'technology/rtn11_dubai/news11/index.html','hideLeft==true');
g_navNode_9_70_11=g_navNode_9_70.addNode('6325','Raytheon\'s Jim Hvizd on Special Mission Aircraft',ssUrlPrefix + 'technology/rtn11_dubai/news12/index.html','hideLeft==true');
g_navNode_9_70_12=g_navNode_9_70.addNode('6326','Raytheon \u2013EAI showcase qualified TALON Laser-Guided Rocket at Dubai Air Show',ssUrlPrefix + 'technology/rtn11_dubai/news13/index.html','hideLeft==true','showSideBar==true');
g_navNode_9_70_13=g_navNode_9_70.addNode('6327','Raytheon\'s Michelle Lohmeier on Laser-Guided Rocket\'s precision capability',ssUrlPrefix + 'technology/rtn11_dubai/news14/index.html','hideLeft==true');
g_navNode_9_70_14=g_navNode_9_70.addNode('6328','Warfighter Can Integrate Paveway onto More Platforms with New Technology',ssUrlPrefix + 'technology/rtn11_dubai/news15/index.html','contributorOnly==false','hideLeft==true','showSideBar==true');
g_navNode_9_70_15=g_navNode_9_70.addNode('6329','Raytheon\u2019s TPY-2 Radar Performs in Two Modes',ssUrlPrefix + 'technology/rtn11_dubai/news16/index.html','hideLeft==true','showSideBar==true');
g_navNode_9_70_16=g_navNode_9_70.addNode('6330','Raytheon Continues Patriot Modernization',ssUrlPrefix + 'technology/rtn11_dubai/news17/index.html','hideLeft==true','showSideBar==true');
g_navNode_9_70_17=g_navNode_9_70.addNode('6331','Infographic\x3a Patriot ',ssUrlPrefix + 'technology/rtn11_dubai/news18/index.html','hideLeft==true');
g_navNode_9_70_18=g_navNode_9_70.addNode('6332','Photos from the 2011 Dubai Airshow',ssUrlPrefix + 'technology/rtn11_dubai/news19/index.html','hideLeft==true');
g_navNode_9_70_19=g_navNode_9_70.addNode('6333','Update on Raytheon\'s UEWR Program',ssUrlPrefix + 'technology/rtn11_dubai/news20/index.html','hideLeft==true','showSideBar==true');
g_navNode_9_70_20=g_navNode_9_70.addNode('6334','U.S. Navy successfully launches first MK-54 from PA-8 Poseidon aircraft',ssUrlPrefix + 'technology/rtn11_dubai/news21/index.html','hideLeft==true','showSideBar==false');
g_navNode_9_70_21=g_navNode_9_70.addNode('6335','Special Mission Aircraft/ISR story to go with news conference',ssUrlPrefix + 'technology/rtn11_dubai/news22/index.html','hideLeft==true','showSideBar==false');
g_navNode_9_70_22=g_navNode_9_70.addNode('6338','LGR test footage',ssUrlPrefix + 'technology/rtn11_dubai/news23/index.html','hideLeft==true');
g_navNode_9_70_23=g_navNode_9_70.addNode('6346','Raytheon Media Briefing Schedule',ssUrlPrefix + 'technology/rtn11_dubai/media_brief/index.html','hideLeft==true','showSideBar==false');
}
if (SSContributor)
{
g_navNode_9_71=g_navNode_9.addNode('6286','Raytheon Technology Successfully Orbited on Next-Gen Weather Satellite System',ssUrlPrefix + 'technology/rtn11_npp_launch/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_72=g_navNode_9.addNode('6307','NASA Recognizes Raytheon with  Award at Symposium',ssUrlPrefix + 'technology/rtn11_JPL/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showSocialMedia==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_74=g_navNode_9.addNode('6349','Raytheon Australia at Spatial\x40Gov 2011',ssUrlPrefix + 'technology/spatialgov2011/index.html','contributorOnly==true','hideLeft==true','showNav==false','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_75=g_navNode_9.addNode('6421','Raytheon-Lockheed Martin team wins GMD Development and Sustainment Contract',ssUrlPrefix + 'technology/rms11_gmd/index.html','contributorOnly==true','hideLeft==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
g_navNode_9_75_0=g_navNode_9_75.addNode('6426','news',ssUrlPrefix + 'technology/rms11_gmd/news/index.html','browserTitle==Media Coverage','hideLeft==true','showNav==false','showSideBar==true','showTopPage==true','sideBarWidth==181');
}
if (SSContributor)
{
g_navNode_9_76=g_navNode_9.addNode('6437','Raytheon at Surface Navy 2012',ssUrlPrefix + 'technology/rtn11_sna/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
}
g_navNode_9_77=g_navNode_9.addNode('6451','Raytheon Participates in the Singapore Trade Show',ssUrlPrefix + 'technology/rtn12_singapore/index.html','contributorOnly==false','graphicOnly==false','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_77_0=g_navNode_9_77.addNode('6452','Post Archive',ssUrlPrefix + 'technology/rtn12_singapore/archive/index.html','hideLeft==true','showSideBar==false','showTopPage==true');
g_navNode_9_77_1=g_navNode_9_77.addNode('6453','Raytheon supports U.S. Navy foreign military sales in Asia-Pacific region',ssUrlPrefix + 'technology/rtn12_singapore/news1/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_77_2=g_navNode_9_77.addNode('6454','Raytheon\u2019s maritime surveillance capabilities address trade and military challenges across Asia',ssUrlPrefix + 'technology/rtn12_singapore/news2/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_77_3=g_navNode_9_77.addNode('6526','Raytheon delivers first international maritime surveillance radar to Boeing',ssUrlPrefix + 'technology/rtn12_singapore/news3/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_77_4=g_navNode_9_77.addNode('6527','Security challenges drive AESA radar demand across Asia',ssUrlPrefix + 'technology/rtn12_singapore/news4/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_77_5=g_navNode_9_77.addNode('6529','Raytheon restarts production of laser-guided Maverick',ssUrlPrefix + 'technology/rtn12_singapore/news5/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
g_navNode_9_77_6=g_navNode_9_77.addNode('6530','Raytheon completes first test of JSOW-ER warhead',ssUrlPrefix + 'technology/rtn12_singapore/news6/index.html','hideLeft==true','showSideBar==true','showTopPage==true');
if (SSContributor)
{
g_navNode_9_78=g_navNode_9.addNode('6457','Raytheon awarded \x24685.7 million for new Patriot systems for Taiwan',ssUrlPrefix + 'technology/rtn12_patriot_taiwan/index.html','contributorOnly==true','hideLeft==true','showNav==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_79=g_navNode_9.addNode('6459','Raytheon Participates in the American Meteorological Society\'s Annual Meeting',ssUrlPrefix + 'technology/rtn12_ams/index.html','contributorOnly==true','hideLeft==true','showSideBar==true','showTopPage==true');
}
if (SSContributor)
{
g_navNode_9_80=g_navNode_9.addNode('6462','Indian Army Day',ssUrlPrefix + 'technology/rms12_iad/index.html','contributorOnly==true','hideLeft==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
}
if (SSContributor)
{
g_navNode_9_81=g_navNode_9.addNode('6463','Surface Navy Association\'s 24th Annual Symposium ',ssUrlPrefix + 'technology/rtn12_sna/index.html','contributorOnly==true','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==151');
}
g_navNode_9_82=g_navNode_9.addNode('6481','Raytheon Technology and Innovation Leadership Help Shape the Future of Law Enforcement',ssUrlPrefix + 'technology/rtn12_ces/index.html','hideLeft==true','showNav==true','showSideBar==false','showTopPage==true');
g_navNode_9_83=g_navNode_9.addNode('6510','10th Anniversary of Standard Missile-3 Intercept',ssUrlPrefix + 'technology/rms12_sm310th/index.html','hideLeft==true','showSideBar==true','showTopPage==true','sideBarWidth==181');
g_navNode_9_84=g_navNode_9.addNode('6515','VIIRS Takes Stunning New \'Blue Marble\' Image of Earth',ssUrlPrefix + 'technology/rtn12_bluemarble/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true','sideBarWidth==200');
g_navNode_9_85=g_navNode_9.addNode('6525','Raytheon\'s Innovative Railgun Technology Garners Media Attention',ssUrlPrefix + 'technology/rtn12_railgun/index.html','hideLeft==true','showNav==true','showSideBar==false','showTopPage==true');
g_navNode_9_86=g_navNode_9.addNode('6528','Raytheon, Lockheed Martin Team to provide SEWIP Electronic Attack Capability for U.S. Navy Anti-Ship Missile Defense',ssUrlPrefix + 'technology/rtn12_sewip/index.html','hideLeft==true','showNav==true','showSideBar==true','showTopPage==true');

