/////////////////////////////////////////////////////////////////////////////
// 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 attrName = argValues[i].split("==")[0];
		var attrValue = argValues[i].split("==")[1];

		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 attrName = argValues[i].split("==")[0];
		var attrValue = argValues[i].split("==")[1];

		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('9','Home',ssUrlPrefix + 'index.htm',null,'BodyTop_JavascriptTag==var axel \x3d Math.random\x28\x29\x2b\"\"\x3bvar a \x3d axel \x2a 10000000000000\x3bdocument.write\x28\\x27\x3cIFRAME SRC\x3d\"http\x3a//fls.doubleclick.net/activityi\x3bsrc\x3d1632002\x3btype\x3dcitse865\x3bcat\x3dcitco619\x3bord\x3d1\x3bnum\x3d\\x27\x2b a \x2b \\x27?\" WIDTH\x3d1 HEIGHT\x3d1 FRAMEBORDER\x3d0\x3e\x3c/IFRAME\x3e\\x27\x29\x3b','BodyTop_NonJavascriptTag==\x3cIFRAME SRC\x3d\"http\x3a//fls.doubleclick.net/activityi\x3bsrc\x3d1632002\x3btype\x3dcitse865\x3bcat\x3dcitco619\x3bord\x3d1\x3bnum\x3d1?\" WIDTH\x3d1 HEIGHT\x3d1 FRAMEBORDER\x3d0\x3e\x3c/IFRAME\x3e','ImageType==1','PageTitle==CIT Middle Market Business \x26 Commercial Loans, Financial Services \x26 Solutions. cit.com','ScriptCodeSRC_1==http\x3a//view.atdmt.com/jaction/k01cit_Homepage_1','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowRSSIcon==TRUE');
g_navNode_0=g_navNode_Root.addNode('10','About CIT',ssUrlPrefix + 'about-cit/index.htm','ImageType==1','NumColumns==1','PageTitle==About CIT -  Business Lending, Advisory and Leasing Services for Small and Middle Market companies. cit.com','ShowBreadcrumb==false','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_0_0=g_navNode_0.addNode('11','Our Mission',ssUrlPrefix + 'about-cit/mission/mission','ImageType==2','NumColumns==1','PageTitle==CIT Corporate Mission Statement. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE','contributorOnly==FALSE');
g_navNode_0_1=g_navNode_0.addNode('100219','Restructuring',ssUrlPrefix + 'about-cit/restructuring/index.htm','ImageType==2','NumColumns==1','PageTitle==Restructuring ','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_0_2=g_navNode_0.addNode('100199','Our Vital Role',ssUrlPrefix + 'about-cit/vital-role/index.htm','ImageType==2','NumColumns==1','PageTitle==The Vital Role of CIT - Middle Market and Small Business Financing','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_0_2_0=g_navNode_0_2.addNode('100200','Quotes \x26 Letters',ssUrlPrefix + 'about-cit/vital-role/quotes/index.htm','ImageType==2','NumColumns==1','PageTitle==Quotes of Support for CIT - Vital Role in Small Business and Middle Market Lending','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_0_2_0_1=g_navNode_0_2_0.addNode('100202','Associations',ssUrlPrefix + 'about-cit/vital-role/quotes/associations/index.htm','ImageType==2','NumColumns==1','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_0_2_0_3=g_navNode_0_2_0.addNode('100209','On Small and Middle Market Business',ssUrlPrefix + 'about-cit/vital-role/quotes/Small-and-Middle-Market-Business/index.htm','ImageType==2','NumColumns==1','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_0_2_0_4=g_navNode_0_2_0.addNode('100210','On Retail',ssUrlPrefix + 'about-cit/vital-role/quotes/retail/index.htm','ImageType==2','NumColumns==1','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_0_3=g_navNode_0.addNode('12','CIT Businesses',ssUrlPrefix + 'about-cit/cit-businesses/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Corporate, Trade \x26 Transportation Financing \x26 Insurance. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_0_4=g_navNode_0.addNode('14','CIT Leadership',ssUrlPrefix + 'about-cit/cit-leadership/index.htm','PageTitle==CIT Executive Sourcebook','ShowBreadcrumb==false','ShowLHN==true');
g_navNode_0_5=g_navNode_0.addNode('13','Corporate Governance',ssUrlPrefix + 'about-cit/corporate-governance/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Corporate Governance, Officers \x26 Board of Directors. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_0_5_0=g_navNode_0_5.addNode('21','Executive Committee',ssUrlPrefix + 'about-cit/corporate-governance/ExecutiveCommittee/index.htm');
g_navNode_0_5_1=g_navNode_0_5.addNode('22','Board Of Directors',ssUrlPrefix + 'about-cit/corporate-governance/board-of-directors/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Corporate Governance.Board of Directors - cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_0_5_1_0=g_navNode_0_5_1.addNode('50093','Jeffrey M Peek',ssUrlPrefix + 'about-cit/corporate-governance/board-of-directors/jeffrey-m-peek/index.htm');
g_navNode_0_5_1_2=g_navNode_0_5_1.addNode('50091','William M Freeman',ssUrlPrefix + 'about-cit/corporate-governance/board-of-directors/william-m-freeman/index.htm');
g_navNode_0_5_1_4=g_navNode_0_5_1.addNode('50089','Marianne Miller Parrs',ssUrlPrefix + 'about-cit/corporate-governance/board-of-directors/marianne-miller-parrs/index.htm','ShowBreadcrumb==true');
g_navNode_0_5_1_5=g_navNode_0_5_1.addNode('50096','Vice Admiral John Ryan',ssUrlPrefix + 'about-cit/corporate-governance/board-of-directors/vice-admiral-john-ryan/index.htm');
g_navNode_0_5_1_6=g_navNode_0_5_1.addNode('100155','Christopher H. Shays',ssUrlPrefix + 'about-cit/corporate-governance/board-of-directors/christopher-h-shays/index.htm');
g_navNode_0_5_1_7=g_navNode_0_5_1.addNode('50098','Seymour Sternberg',ssUrlPrefix + 'about-cit/corporate-governance/board-of-directors/seymour-sternberg/index.htm');
g_navNode_0_5_1_8=g_navNode_0_5_1.addNode('50097','Peter J. Tobin',ssUrlPrefix + 'about-cit/corporate-governance/board-of-directors/peter-j-tobin/index.htm');
g_navNode_0_5_1_9=g_navNode_0_5_1.addNode('50099','Lois M. Van Deusen',ssUrlPrefix + 'about-cit/corporate-governance/board-of-directors/lois-m-van-deusen/index.htm');
g_navNode_0_5_2=g_navNode_0_5.addNode('23','Assessments and Ratings',ssUrlPrefix + 'about-cit/corporate-governance/assessments-and-ratings/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT  Corporate Governance.Assessments \x26 Ratings','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_0_5_3=g_navNode_0_5.addNode('577','Board Committees',ssUrlPrefix + 'about-cit/corporate-governance/board-committees/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT.Corporate Governance.Board Committees','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_0_5_4=g_navNode_0_5.addNode('72','Communications With Directors',ssUrlPrefix + 'about-cit/corporate-governance/communications-with-directors/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Corporate Governance.Communications with Directors','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_0_6=g_navNode_0.addNode('15','Corporate Giving',ssUrlPrefix + 'about-cit/corporate-giving/index.htm','ImageType==1','NumColumns==1','PageTitle==CIT Corporate Giving to Non-Profits Program \x26 Corporate Citizenship. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_0_6_0=g_navNode_0_6.addNode('25','Partners and Programs',ssUrlPrefix + 'about-cit/corporate-giving/partners-and-programs/index.htm','ImageType==2','PageTitle==CIT - About CIT.Corporate Giving.Partners and Programs','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_0_6_1=g_navNode_0_6.addNode('100153','Global Employee Volunteer Month ',ssUrlPrefix + 'about-cit/corporate-giving/volunteer-widget/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT  - Corporate Giving - Global Employee Volunteer Month','ShowBreadcrumb==true','ShowLHN==true','ShowShareButton==true');
g_navNode_0_6_2=g_navNode_0_6.addNode('27','Submitting A Funding Proposal',ssUrlPrefix + 'about-cit/corporate-giving/submitting-funding-proposal/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT .About CIT.Corporate Giving.Submitting a Funding Proposal','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_0_6_3=g_navNode_0_6.addNode('26','FAQS',ssUrlPrefix + 'about-cit/corporate-giving/faq/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT . AboutCIT. Corporate Giving. FAQs','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_0_6_4=g_navNode_0_6.addNode('100197','Podcasts',ssUrlPrefix + 'about-cit/corporate-giving/podcasts/index.htm','ImageType==2','NumColumns==1','PageTitle==Arts and Culture Podcast - 5 Minute Capital','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_0_7=g_navNode_0.addNode('16','Centennial',ssUrlPrefix + 'about-cit/centennial/index.htm','ImageType==1','NumColumns==1','PageTitle==CIT Centennial - 100 years of financing Middle Market Businesses. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_0_7_0=g_navNode_0_7.addNode('28','The CIT Story',ssUrlPrefix + 'about-cit/centennial/the-cit-story/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Centennial  - The CIT Story','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_0_7_0_0=g_navNode_0_7_0.addNode('44','A New Venture',ssUrlPrefix + 'about-cit/centennial/the-cit-story/a-new-venture/index.htm','ImageType==2','NumColumns==3','PageTitle==Centennial \x3e The CIT Story \x3e A New Venture','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_0_7_0_1=g_navNode_0_7_0.addNode('45','Standing Firm',ssUrlPrefix + 'about-cit/centennial/the-cit-story/standing-firm/index.htm','ImageType==2','NumColumns==3','PageTitle==Centennial \x3e The CIT Story \x3e Standing Firm','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_0_7_0_2=g_navNode_0_7_0.addNode('46','Post-War Prosperity',ssUrlPrefix + 'about-cit/centennial/the-cit-story/post-war-posperity/index.htm','ImageType==2','NumColumns==3','PageTitle==Centennial \x3e The CIT Story \x3e Post-War Prosperity','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_0_7_0_3=g_navNode_0_7_0.addNode('47','Adapting to Change',ssUrlPrefix + 'about-cit/centennial/the-cit-story/adapting-to-change/index.htm','ImageType==2','NumColumns==3','PageTitle==Centennial \x3e The CIT Story \x3e Adapting to Change','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_0_7_0_4=g_navNode_0_7_0.addNode('48','A New Economy',ssUrlPrefix + 'about-cit/centennial/the-cit-story/a-new-economy/index.htm','ImageType==2','NumColumns==3','PageTitle==Centennial \x3e The CIT Story \x3e A New Economy','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_0_7_1=g_navNode_0_7.addNode('29','Centennial Perspectives Story Pods',ssUrlPrefix + 'about-cit/centennial/story-pods/index.htm','ImageType==2','PageTitle==Centennial Perspectives\x3a Story Pods','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_0_8=g_navNode_0.addNode('100218','5 Minute Capital Podcast Series',ssUrlPrefix + 'about-cit/podcasts/index.htm','ImageType==2','NumColumns==1','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_0_8_0=g_navNode_0_8.addNode('36','Archive- 5 Minute Capital Podcast Series',ssUrlPrefix + 'about-cit/podcasts/podcasts-archive/index.htm','BodyTop_JavascriptTag==var axel \x3d Math.random\x28\x29\x2b\"\"\x3bvar a \x3d axel \x2a 10000000000000\x3bdocument.write\x28\\x27\x3cIFRAME SRC\x3d\"http\x3a//fls.doubleclick.net/activityi\x3bsrc\x3d1632002\x3btype\x3dcitse865\x3bcat\x3dpodca261\x3bord\x3d1\x3bnum\x3d\\x27\x2b a \x2b \\x27?\" WIDTH\x3d1 HEIGHT\x3d1 FRAMEBORDER\x3d0\x3e\x3c/IFRAME\x3e\\x27\x29\x3b','BodyTop_NonJavascriptTag==\x3cIFRAME SRC\x3d\"http\x3a//fls.doubleclick.net/activityi\x3bsrc\x3d1632002\x3btype\x3dcitse865\x3bcat\x3dpodca261\x3bord\x3d1\x3bnum\x3d1?\" WIDTH\x3d1 HEIGHT\x3d1 FRAMEBORDER\x3d0\x3e\x3c/IFRAME\x3e','ImageType==2','NumColumns==1','PageTitle==5 Minute Capital - Middle Market Business Podcasts from CIT. cit.com','ScriptCodeSRC_1==http\x3a//view.atdmt.com/jaction/k01cit_PodcastPage_1','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowRSSIcon==false','ShowShareButton==true','xmlDocName==S1002390');
g_navNode_0_9=g_navNode_0.addNode('19','Case Studies',ssUrlPrefix + 'about-cit/case-studies/index.htm','ImageType==1','MediaMath==http\x3a//ad.yieldmanager.com/pixel?id\x3d139447\x26id\x3d139448\x26id\x3d74909\x26id\x3d75240\x26id\x3d137414\x26t\x3d1','NumColumns==2','PageTitle==CIT Global - Case Studies - Commercial Finance Leasing. cit.com','ScriptCodeSRC_1==\x26lt\x3bscript\x26gt\x3bdocument.write\x28\\x27\x3cs\\x27\x2b\\x27cript language\x3d\"JavaScript\" src\x3d\"http\x3a//view.atdmt.com/jaction/k01cit_CaseStudiesPage_1\"\x3e\x3c/s\\x27\x2b\\x27cript\x3e\\x27\x29\x26lt\x3b/script\x26gt\x3b\x3cnoscript\x3e\x3ciframe src\x3d\"http\x3a//view.atdmt.com/iaction/k01cit_CaseStudiesPage_1\" width\x3d\"1\" height\x3d\"1\" frameborder\x3d\"0\" scrolling\x3d\"No\" marginheight\x3d\"0\" marginwidth\x3d\"0\" topmargin\x3d\"0\" leftmargin\x3d\"0\"\x3e\x3c/iframe\x3e\x3c/noscript\x3e','ShowBreadcrumb==true','ShowLHN==true','ShowShareButton==true');
g_navNode_0_9_0=g_navNode_0_9.addNode('50087','Accounting Practice Sales',ssUrlPrefix + 'about-cit/case-studies/accounting-practice-sales/index.htm','ImageType==2','NumColumns==1','PageTitle==Accounting Practice Sales - Small Business Financing From CIT Group','ShowBreadcrumb==true','ShowLHN==true','ShowShareButton==true');
g_navNode_0_9_1=g_navNode_0_9.addNode('6000','American Gilsonite',ssUrlPrefix + 'about-cit/case-studies/american-gilsonite/index.htm','ImageType==2','NumColumns==1','PageTitle==American Glisonite Case Study - Loan For Small Business from CIT','ShowBreadcrumb==false','ShowLHN==true','ShowShareButton==true');
g_navNode_0_9_2=g_navNode_0_9.addNode('100109','Avaya',ssUrlPrefix + 'about-cit/case-studies/avaya/index.htm','ImageType==2','NumColumns==1','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_0_9_3=g_navNode_0_9.addNode('6001','Blitz Distribution',ssUrlPrefix + 'about-cit/case-studies/blitz-distribution/index.htm','ImageType==2','NumColumns==1','PageTitle==Blitz Distribution Case Study - Growth Finance from CIT Group','ShowBreadcrumb==false','ShowLHN==true','ShowShareButton==true');
g_navNode_0_9_4=g_navNode_0_9.addNode('6002','Dark Castle',ssUrlPrefix + 'about-cit/case-studies/dark-castle/index.htm','BodyTop_JavascriptTag==var axel \x3d Math.random\x28\x29\x2b\"\"\x3bvar a \x3d axel \x2a 10000000000000\x3bdocument.write\x28\\x27\x3cIFRAME SRC\x3d\"http\x3a//fls.doubleclick.net/activityi\x3bsrc\x3d1632002\x3btype\x3dcitse865\x3bcat\x3ddarkc659\x3bord\x3d1\x3bnum\x3d\\x27\x2b a \x2b \\x27?\" WIDTH\x3d1 HEIGHT\x3d1 FRAMEBORDER\x3d0\x3e\x3c/IFRAME\x3e\\x27\x29\x3b','ImageType==2','NumColumns==1','PageTitle==Dark Castle Entertainment Case Study - Film Production Financing from CIT Group','ShowBreadcrumb==false','ShowLHN==true','ShowShareButton==true');
g_navNode_0_9_5=g_navNode_0_9.addNode('100026','Delta Rigging \x26 Tools',ssUrlPrefix + 'about-cit/case-studies/delta-rigging-and-tools/index.htm','ImageType==2','NumColumns==1','PageTitle==Delta Rigging \x26 Tools Case Study - Energy Financing from CIT Group','ShowBreadcrumb==true','ShowLHN==true','ShowShareButton==true');
g_navNode_0_9_6=g_navNode_0_9.addNode('50086','Dunkin Brands',ssUrlPrefix + 'about-cit/case-studies/dunkin-brands/index.htm','BodyTop_JavascriptTag==var axel \x3d Math.random\x28\x29\x2b\"\"\x3bvar a \x3d axel \x2a 10000000000000\x3bdocument.write\x28\\x27\x3cIFRAME SRC\x3d\"http\x3a//fls.doubleclick.net/activityi\x3bsrc\x3d1632002\x3btype\x3dcitse865\x3bcat\x3ddunki537\x3bord\x3d1\x3bnum\x3d\\x27\x2b a \x2b \\x27?\" WIDTH\x3d1 HEIGHT\x3d1 FRAMEBORDER\x3d0\x3e\x3c/IFRAME\x3e\\x27\x29\x3b','ImageType==2','NumColumns==1','PageTitle==Dunkin Donuts Case Study - Complex Franchisee Financing from CIT Group','ShowBreadcrumb==true','ShowLHN==true','ShowShareButton==true');
g_navNode_0_9_7=g_navNode_0_9.addNode('50103','Hudson Group',ssUrlPrefix + 'about-cit/case-studies/hudson-group/index.htm','ImageType==2','NumColumns==1','PageTitle==Hudson Group Case Study - Retail Financing from CIT Group','ShowBreadcrumb==true','ShowLHN==true','ShowShareButton==true');
g_navNode_0_9_8=g_navNode_0_9.addNode('6004','Layline Petroleum',ssUrlPrefix + 'about-cit/case-studies/layline-petroleum/index.htm','ImageType==2','NumColumns==1','PageTitle==Layline Petroleum Case Study - Energy Financing From CIT Group','ShowBreadcrumb==false','ShowLHN==true','ShowShareButton==true');
g_navNode_0_9_9=g_navNode_0_9.addNode('6005','Lennox',ssUrlPrefix + 'about-cit/case-studies/lennox/index.htm','ImageType==2','NumColumns==1','PageTitle==Lennox Case Study - Easy and Affordable Financing from CIT Group','ShowBreadcrumb==false','ShowLHN==true','ShowShareButton==true');
g_navNode_0_9_10=g_navNode_0_9.addNode('6006','Marquis Jet',ssUrlPrefix + 'about-cit/case-studies/marquis-jet/index.htm','BodyTop_JavascriptTag==var axel \x3d Math.random\x28\x29\x2b\"\"\x3bvar a \x3d axel \x2a 10000000000000\x3bdocument.write\x28\\x27\x3cIFRAME SRC\x3d\"http\x3a//fls.doubleclick.net/activityi\x3bsrc\x3d1632002\x3btype\x3dcitse865\x3bcat\x3dmarqu781\x3bord\x3d1\x3bnum\x3d\\x27\x2b a \x2b \\x27?\" WIDTH\x3d1 HEIGHT\x3d1 FRAMEBORDER\x3d0\x3e\x3c/IFRAME\x3e\\x27\x29\x3b','BodyTop_NonJavascriptTag==\x3cIFRAME SRC\x3d\"http\x3a//fls.doubleclick.net/activityi\x3bsrc\x3d1632002\x3btype\x3dcitse865\x3bcat\x3dmarqu781\x3bord\x3d1\x3bnum\x3d1?\" WIDTH\x3d1 HEIGHT\x3d1 FRAMEBORDER\x3d0\x3e\x3c/IFRAME\x3e','ImageType==2','NumColumns==1','PageTitle==Marquis Jet Case Study - Aerospace Finance from CIT Group','ShowBreadcrumb==false','ShowLHN==true','ShowShareButton==true');
g_navNode_0_9_11=g_navNode_0_9.addNode('100028','Michael\'s Finer Meats',ssUrlPrefix + 'about-cit/case-studies/michaels-finer-meats/index.htm','ImageType==2','NumColumns==1','PageTitle==Michael\\x27s Finer Meats -  Total Financial Solutions from CIT Group','ShowBreadcrumb==true','ShowLHN==true','ShowShareButton==true');
g_navNode_0_9_12=g_navNode_0_9.addNode('100191','Northern Oil \x26 Gas',ssUrlPrefix + 'about-cit/case-studies/northern-oil-and-gas/index.htm','ImageType==2','NumColumns==1','PageTitle==Northern Oil \x26 Gas Case Study - Energy Financing From CIT Group','ShowBreadcrumb==true','ShowLHN==true','ShowShareButton==true');
g_navNode_0_9_13=g_navNode_0_9.addNode('6007','Paetec',ssUrlPrefix + 'about-cit/case-studies/paetec/index.htm','ImageType==2','NumColumns==1','PageTitle==Pantec Case Study - Telecommunications Industry Financing from CIT Group','ShowBreadcrumb==true','ShowLHN==true','ShowShareButton==true');
g_navNode_0_9_14=g_navNode_0_9.addNode('3011','Primrose Schools',ssUrlPrefix + 'about-cit/case-studies/primrose-schools/index.htm','ImageType==2','NumColumns==1','PageTitle==Primrose Schools Case Study - Small Business Administration Lender, CIT Group','ShowBreadcrumb==false','ShowLHN==true','ShowShareButton==true');
g_navNode_0_9_15=g_navNode_0_9.addNode('3012','Prinoth',ssUrlPrefix + 'about-cit/case-studies/prinoth/index.htm','ImageType==2','NumColumns==1','PageTitle==Prinoth Case Study - Financial Services Partner CIT Group','ShowBreadcrumb==false','ShowLHN==true','ShowShareButton==true');
g_navNode_0_9_16=g_navNode_0_9.addNode('100135','Southern California Pizza Company',ssUrlPrefix + 'about-cit/case-studies/southern-california-pizza-company/index.htm','ImageType==2','NumColumns==1','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_0_9_17=g_navNode_0_9.addNode('3013','Spencer Gifts',ssUrlPrefix + 'about-cit/case-studies/spencer-gifts/index.htm','ImageType==2','NumColumns==1','PageTitle==Spencer Gifts Case Study - Innovative Financial Services Provided by CIT','ShowBreadcrumb==false','ShowLHN==true','ShowShareButton==true');
g_navNode_0_9_18=g_navNode_0_9.addNode('100136','Stoney Brook Veterinary Hospital ',ssUrlPrefix + 'about-cit/case-studies/stoney-brook-veterinary-hospital/index.htm','ImageType==2','NumColumns==1','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_0_9_19=g_navNode_0_9.addNode('100110','Tecomet',ssUrlPrefix + 'about-cit/case-studies/tecomet/index.htm','ImageType==2','NumColumns==1','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_0_9_20=g_navNode_0_9.addNode('3015','Telx',ssUrlPrefix + 'about-cit/case-studies/telx/index.htm','ImageType==2','NumColumns==1','PageTitle==Telx Case Study - Communications Finance from CIT Group','ShowBreadcrumb==false','ShowLHN==true','ShowShareButton==true');
g_navNode_0_9_21=g_navNode_0_9.addNode('3014','Timco',ssUrlPrefix + 'about-cit/case-studies/timco/index.htm','ImageType==2','NumColumns==1','PageTitle==Timco Case Study - Aerospace, Defense and Homeland Security Financing from CIT','ShowBreadcrumb==true','ShowLHN==true','ShowShareButton==true');
g_navNode_0_9_22=g_navNode_0_9.addNode('100027','Vault',ssUrlPrefix + 'about-cit/case-studies/vault/index.htm','ImageType==2','NumColumns==1','PageTitle==Vault Case Study - Senior Secured Credit Facility From CIT Group','ShowBreadcrumb==true','ShowLHN==true','ShowShareButton==true');
g_navNode_0_9_23=g_navNode_0_9.addNode('100152','Voice4net',ssUrlPrefix + 'about-cit/case-studies/Voice4net/index.htm','ImageType==2','NumColumns==1','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_0_10=g_navNode_0.addNode('18','Capital Redefined',ssUrlPrefix + 'about-cit/capital-redefined-branding-campaign/index.htm','ImageType==2','NumColumns==1','PageTitle==Capital Redefined - How CIT is Redefining Capital. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_0_10_0=g_navNode_0_10.addNode('100214','U.S. Small and Middle Market Outlook 2009',ssUrlPrefix + 'about-cit/capital-redefined-branding-campaign/middle-market-outlook/index.htm','DownloadContentID==CIT-MMO-RETAIL-STUDY','ImageType==2','NumColumns==1','PageTitle==CIT Middle Market Outlook 2009\x3a Retail ','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_0_10_0_2=g_navNode_0_10_0.addNode('100190','Healthcare Middle Market Outlook',ssUrlPrefix + 'about-cit/capital-redefined-branding-campaign/middle-market-outlook/healthcare-middle-market-outlook/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT US Middle Market Outlook 2009 - Resiliency in the Healthcare Sector - Economic Recovery White Paper','ShowBreadcrumb==true','ShowLHN==true','ShowShareButton==true');
g_navNode_0_10_0_3=g_navNode_0_10_0.addNode('35','U.S. Middle Market Outlook 2009 ',ssUrlPrefix + 'about-cit/capital-redefined-branding-campaign/middle-market-outlook/middle-market-outlook-2009/index.htm','BodyTop_JavascriptTag==var axel \x3d Math.random\x28\x29\x2b\"\"\x3bvar a \x3d axel \x2a 10000000000000\x3bdocument.write\x28\\x27\x3cIFRAME SRC\x3d\"http\x3a//fls.doubleclick.net/activityi\x3bsrc\x3d1632002\x3btype\x3dcitse865\x3bcat\x3dcitmi187\x3bord\x3d1\x3bnum\x3d\\x27\x2b a \x2b \\x27?\" WIDTH\x3d1 HEIGHT\x3d1 FRAMEBORDER\x3d0\x3e\x3c/IFRAME\x3e\\x27\x29\x3b','BodyTop_NonJavascriptTag==\x3cIFRAME SRC\x3d\"http\x3a//fls.doubleclick.net/activityi\x3bsrc\x3d1632002\x3btype\x3dcitse865\x3bcat\x3dcitmi187\x3bord\x3d1\x3bnum\x3d1?\" WIDTH\x3d1 HEIGHT\x3d1 FRAMEBORDER\x3d0\x3e\x3c/IFRAME\x3e','ImageType==2','NumColumns==1','PageTitle==US Middle Market Outlook 2009. Economic Recovery White Paper','ShowBreadcrumb==true','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_0_10_0_4=g_navNode_0_10_0.addNode('100145','US Middle Market Outlook 2007',ssUrlPrefix + 'about-cit/capital-redefined-branding-campaign/middle-market-outlook/us-middle-market-outlook-2007/index.htm','ImageType==2','NumColumns==1','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_0_10_1=g_navNode_0_10.addNode('50080','Podcast Series\x3a 5 Minute Capital',ssUrlPrefix + 'about-cit/capital-redefined-branding-campaign/PodcastSeries5MinuteCapital/index.htm','secondaryUrlVariableField==region1');
g_navNode_0_10_2=g_navNode_0_10.addNode('33','CIT Behind the Business',ssUrlPrefix + 'about-cit/capital-redefined-branding-campaign/behind-the-business/index.htm','BioColor==\x23c02000','ImageType==2','NumColumns==2','PageTitle==About CIT \x3e Capital Redefined \x3e CIT\x3a Behind the Business - Dunkin Brands','ShowBreadcrumb==FALSE','ShowLHN==TRUE','ShowShareButton==true','secondaryUrlVariableField==region1');
g_navNode_0_10_2_0=g_navNode_0_10_2.addNode('102','Marc Ecko',ssUrlPrefix + 'about-cit/capital-redefined-branding-campaign/behind-the-business/marc-ecko/index.htm','BioColor==\x23ff8c00','ImageType==2','PageTitle==About CIT \x3e Capital Redefined \x3e CIT\x3a Behind the Business','ShowBreadcrumb==FALSE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_0_10_2_1=g_navNode_0_10_2.addNode('96','Marquis Jet',ssUrlPrefix + 'about-cit/capital-redefined-branding-campaign/behind-the-business/marquis-jet/index.htm','BioColor==\x23000000','ImageType==2','PageTitle==About CIT \x3e Capital Redefined \x3e \x5bCIT\x3a Behind the Business - Marquis Jet\x5d','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_0_10_2_2=g_navNode_0_10_2.addNode('89','Intrepid Pictures',ssUrlPrefix + 'about-cit/capital-redefined-branding-campaign/behind-the-business/intrepid/index.htm','BioColor==\x2300395a','ImageType==2','PageTitle==About CIT \x3e Capital Redefined \x3e CIT\x3a Behind the Business - Intrepid','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_0_10_2_3=g_navNode_0_10_2.addNode('88','Jonathan Tisch',ssUrlPrefix + 'about-cit/capital-redefined-branding-campaign/behind-the-business/tisch/index.htm','BioColor==\x235c4033','ImageType==2','PageTitle==About CIT \x3e Capital Redefined \x3e CIT\x3a Behind the Business - Jonathan M. Tisch','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_0_10_3=g_navNode_0_10.addNode('34','M and A in Challenging Times',ssUrlPrefix + 'about-cit/capital-redefined-branding-campaign/middle-market-outlook./index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - About CIT.Capital Redefined.M\x26A in Challenging Times','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_0_10_4=g_navNode_0_10.addNode('37','The Deal White Papers',ssUrlPrefix + 'about-cit/capital-redefined-branding-campaign/the-deal-whitepapers/index.htm','ImageType==2','NumColumns==1','PageTitle==Here\\x27s the Deal\x3a White Papers from CIT and TheDeal.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_0_12=g_navNode_0.addNode('50077','CIT Executive Speakers Series ',ssUrlPrefix + 'about-cit/speakers-bureau/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Executive Speakers Series  - Expert Financial and Business Commentary from CIT ','ShowBreadcrumb==true','ShowLHN==true','ShowShareButton==true');
g_navNode_0_13=g_navNode_0.addNode('17','Corporate Citizenship',ssUrlPrefix + 'about-cit/corporate-citizenship/index.htm','ImageType==2','NumColumns==1','PageTitle==Corporate Citizenship - Financial Lenders, Financial Services, Lease Financing, Small Business Loan - CIT Group','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1=g_navNode_Root.addNode('90','Products and Services',ssUrlPrefix + 'products-and-services/index.htm','ImageType==1','MediaMath==http\x3a//ad.yieldmanager.com/pixel?id\x3d139453\x26id\x3d139454\x26id\x3d75240\x26id\x3d137414\x26t\x3d1','NumColumns==1','PageTitle==CIT Business Financing Services \x26 Business Finance Solutions. cit.com.','ScriptCodeSRC_1==http\x3a//view.atdmt.com/jaction/k01cit_ProductsandServicesPage_1','ShowBreadcrumb==true','ShowLHN==TRUE');
g_navNode_1_0=g_navNode_1.addNode('91','Corporate Finance',ssUrlPrefix + 'products-and-services/corporate-finance/index.htm','ImageType==1','NumColumns==1','PageTitle==CIT Corporate Financing Services \x26 Corporate Finance Solutions. cit.com.','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_1_0_0=g_navNode_1_0.addNode('92','Commercial \x26 Industrial',ssUrlPrefix + 'products-and-services/corporate-finance/commercial-and-industrial/index.htm','BodyTop_JavascriptTag==var axel \x3d Math.random\x28\x29\x2b\"\"\x3bvar a \x3d axel \x2a 10000000000000\x3bdocument.write\x28\\x27\x3cIFRAME SRC\x3d\"http\x3a//fls.doubleclick.net/activityi\x3bsrc\x3d1632002\x3btype\x3dcitse865\x3bcat\x3dcomme773\x3bord\x3d1\x3bnum\x3d\\x27\x2b a \x2b \\x27?\" WIDTH\x3d1 HEIGHT\x3d1 FRAMEBORDER\x3d0\x3e\x3c/IFRAME\x3e\\x27\x29\x3b','BodyTop_NonJavascriptTag==\x3cIFRAME SRC\x3d\"http\x3a//fls.doubleclick.net/activityi\x3bsrc\x3d1632002\x3btype\x3dcitse865\x3bcat\x3dcomme773\x3bord\x3d1\x3bnum\x3d1?\" WIDTH\x3d1 HEIGHT\x3d1 FRAMEBORDER\x3d0\x3e\x3c/IFRAME\x3e','ImageType==1','NumColumns==1','PageTitle==CIT Accounts Receivable Financing, Factoring \x26 Asset Based Lending. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_0_0=g_navNode_1_0_0.addNode('93','Who We Are',ssUrlPrefix + 'products-and-services/corporate-finance/commercial-and-industrial/who-we-are/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT - Corporate Finance.Commercial  and Industrial  - Who We Are','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_0_1=g_navNode_1_0_0.addNode('94','What We Do',ssUrlPrefix + 'products-and-services/corporate-finance/commercial-and-industrial/what-we-do/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT - Corporate Finance, Commercial and Industrial - What We Do','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_0_2=g_navNode_1_0_0.addNode('839','Case Studies ',ssUrlPrefix + 'products-and-services/corporate-finance/commercial-and-industrial/case-studies/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT - Corporate Finance,Commercial and Industrial  - Case Studies','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_0_0_3=g_navNode_1_0_0.addNode('97','Contact Us',ssUrlPrefix + 'products-and-services/corporate-finance/commercial-and-industrial/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT - Corporate Finance.Commercial and Industrial - Contact Us','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_1=g_navNode_1_0.addNode('103','Communications, Media \x26 Entertainment',ssUrlPrefix + 'products-and-services/corporate-finance/communications-media-entertainment/index.htm','ImageType==1','NumColumns==1','PageTitle==CIT Media Finance, Entertainment and Sports Financing. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_1_0=g_navNode_1_0_1.addNode('104','What We Do',ssUrlPrefix + 'products-and-services/corporate-finance/communications-media-entertainment/what-we-do/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Communications, Media and Entertainment - What We Do','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_1_1=g_navNode_1_0_1.addNode('50082','Case Studies ',ssUrlPrefix + 'products-and-services/corporate-finance/communications-media-entertainment/case-studies/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Communications, Media and Entertainment - Case Studies','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_0_1_2=g_navNode_1_0_1.addNode('100196','Podcasts',ssUrlPrefix + 'products-and-services/corporate-finance/communications-media-entertainment/podcasts/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Communications Media \x26 Entertainment Podcasts- 5 Minute Capital ','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_0_1_3=g_navNode_1_0_1.addNode('105','Contact Us',ssUrlPrefix + 'products-and-services/corporate-finance/communications-media-entertainment/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT - Professional Sports Financing, Entertainment and Media Financing. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_2=g_navNode_1_0.addNode('106','Capital Markets',ssUrlPrefix + 'products-and-services/corporate-finance/capital-markets/index.htm','ImageType==1','NumColumns==1','PageTitle==CIT Capital Markets - Capital , Corporate Venture Capital - cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_2_0=g_navNode_1_0_2.addNode('107','Who We Are',ssUrlPrefix + 'products-and-services/corporate-finance/capital-markets/who-we-are/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Group.Capital Markets.Who We Are','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_2_1=g_navNode_1_0_2.addNode('108','What We Do',ssUrlPrefix + 'products-and-services/corporate-finance/capital-markets/what-we-do/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT - Capital Markets - What We Do','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_2_2=g_navNode_1_0_2.addNode('109','Risk Management',ssUrlPrefix + 'products-and-services/corporate-finance/capital-markets/risk-management/index.htm','BodyTop_JavascriptTag==var axel \x3d Math.random\x28\x29\x2b\"\"\x3bvar a \x3d axel \x2a 10000000000000\x3bdocument.write\x28\\x27\x3cIFRAME SRC\x3d\"http\x3a//fls.doubleclick.net/activityi\x3bsrc\x3d1632002\x3btype\x3dcitse865\x3bcat\x3dtrade202\x3bord\x3d1\x3bnum\x3d\\x27\x2b a \x2b \\x27?\" WIDTH\x3d1 HEIGHT\x3d1 FRAMEBORDER\x3d0\x3e\x3c/IFRAME\x3e\\x27\x29\x3b','BodyTop_NonJavascriptTag==\x3cIFRAME SRC\x3d\"http\x3a//fls.doubleclick.net/activityi\x3bsrc\x3d1632002\x3btype\x3dcitse865\x3bcat\x3dtrade202\x3bord\x3d1\x3bnum\x3d1?\" WIDTH\x3d1 HEIGHT\x3d1 FRAMEBORDER\x3d0\x3e\x3c/IFRAME\x3e','ImageType==2','NumColumns==1','PageTitle==CIT Corporate Financial Risk Management - Capital Markets Risk','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_2_2_0=g_navNode_1_0_2_2.addNode('100121','Current Economic Information and Data',ssUrlPrefix + 'products-and-services/corporate-finance/capital-markets/risk-management/current-economic-information-and-data/index.htm','ImageType==2','NumColumns==1','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_0_2_2_1=g_navNode_1_0_2_2.addNode('100122','Products and Solutions',ssUrlPrefix + 'products-and-services/corporate-finance/capital-markets/risk-management/products-and-solutions/index.htm','ImageType==2','NumColumns==1','PageTitle==Products and Solutions - CIT Corporate Financial Risk Management. Capital Markets Risk','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_0_2_2_1_0=g_navNode_1_0_2_2_1.addNode('100119','Interest Rate Cap',ssUrlPrefix + 'products-and-services/corporate-finance/capital-markets/risk-management/products-and-solutions/interest-rate-cap/index.htm','ImageType==2','NumColumns==1','PageTitle==Interest Rate Cap - CIT Corporate Financial Risk Management. Capital Markets Risk','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_0_2_2_1_1=g_navNode_1_0_2_2_1.addNode('100120','Interest Rate Swap',ssUrlPrefix + 'products-and-services/corporate-finance/capital-markets/risk-management/products-and-solutions/interest-rate-swap/index.htm','ImageType==2','NumColumns==1','PageTitle==Interest Rate Swap - CIT Corporate Financial Risk Management. Capital Markets Risk','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_0_2_2_1_2=g_navNode_1_0_2_2_1.addNode('100125','Interest Rate Collar ',ssUrlPrefix + 'products-and-services/corporate-finance/capital-markets/risk-management/products-and-solutions/interest-rate-collar/index.htm','ImageType==2','NumColumns==1','PageTitle==Interest Rate Collar - CIT Corporate Financial Risk Management. Capital Markets Risk','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_0_2_2_1_3=g_navNode_1_0_2_2_1.addNode('100126','Foreign Exchange Hedging',ssUrlPrefix + 'products-and-services/corporate-finance/capital-markets/risk-management/products-and-solutions/foreign-exchange-hedging/index.htm','ImageType==2','NumColumns==1','PageTitle==Foreign Exchange Hedging - CIT Corporate Financial Risk Management. Capital Markets Risk','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_0_2_2_2=g_navNode_1_0_2_2.addNode('100123','In The News ',ssUrlPrefix + 'products-and-services/corporate-finance/capital-markets/risk-management/in-the-news/index.htm','ImageType==2','NumColumns==1','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_0_2_2_3=g_navNode_1_0_2_2.addNode('100124','Contact Us ',ssUrlPrefix + 'products-and-services/corporate-finance/capital-markets/risk-management/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==Contact Us - CIT Risk Management ','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_0_2_3=g_navNode_1_0_2.addNode('110','Contact Us',ssUrlPrefix + 'products-and-services/corporate-finance/capital-markets/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT - Capital Markets - Contact Us','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_3=g_navNode_1_0.addNode('111','Energy',ssUrlPrefix + 'products-and-services/corporate-finance/energy/index.htm','BodyTop_JavascriptTag==var axel \x3d Math.random\x28\x29\x2b\"\"\x3bvar a \x3d axel \x2a 10000000000000\x3bdocument.write\x28\\x27\x3cIFRAME SRC\x3d\"http\x3a//fls.doubleclick.net/activityi\x3bsrc\x3d1632002\x3btype\x3dcitse865\x3bcat\x3denerg851\x3bord\x3d1\x3bnum\x3d\\x27\x2b a \x2b \\x27?\" WIDTH\x3d1 HEIGHT\x3d1 FRAMEBORDER\x3d0\x3e\x3c/IFRAME\x3e\\x27\x29\x3b','BodyTop_NonJavascriptTag==\x3cIFRAME SRC\x3d\"http\x3a//fls.doubleclick.net/activityi\x3bsrc\x3d1632002\x3btype\x3dcitse865\x3bcat\x3ddunki537\x3bord\x3d1\x3bnum\x3d1?\" WIDTH\x3d1 HEIGHT\x3d1 FRAMEBORDER\x3d0\x3e\x3c/IFRAME\x3e','ImageType==1','NumColumns==1','PageTitle==CIT Energy Project Finance and Financing for Renewable Energy. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_3_0=g_navNode_1_0_3.addNode('112','Who We Are',ssUrlPrefix + 'products-and-services/corporate-finance/energy/who-we-are/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT - Energy Project Finance and Financing for Renewable Energy. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_3_1=g_navNode_1_0_3.addNode('113','What We Do',ssUrlPrefix + 'products-and-services/corporate-finance/energy/what-we-do/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT - Corporate Finance - Energy - What We Do','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_3_2=g_navNode_1_0_3.addNode('50083','Case Studies',ssUrlPrefix + 'products-and-services/corporate-finance/energy/case-studies/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT - Energy Project Finance and Financing - Case Studies','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_0_3_3=g_navNode_1_0_3.addNode('100192','Podcasts',ssUrlPrefix + 'products-and-services/corporate-finance/energy/podcasts/index.htm','ImageType==2','NumColumns==1','PageTitle==Energy Podcasts - CIT 5 Minute Capital ','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_0_3_4=g_navNode_1_0_3.addNode('114','Contact Us',ssUrlPrefix + 'products-and-services/corporate-finance/energy/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT - Energy Finance \x26 Financing for Alternative Energy Projects. Contact Us','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_4=g_navNode_1_0.addNode('119','Healthcare',ssUrlPrefix + 'products-and-services/corporate-finance/healthcare/index.htm','ImageType==1','NonJavascript_CodeTag2==var axel \x3d Math.random\x28\x29\x2b\"\"\x3bvar a \x3d axel \x2a 10000000000000\x3bdocument.write\x28\\x27\x3cIFRAME SRC\x3d\"http\x3a//fls.doubleclick.net/activityi\x3bsrc\x3d1632002\x3btype\x3dcitse865\x3bcat\x3dhealt447\x3bord\x3d1\x3bnum\x3d\\x27\x2b a \x2b \\x27?\" WIDTH\x3d1 HEIGHT\x3d1 FRAMEBORDER\x3d0\x3e\x3c/IFRAME\x3e\\x27\x29\x3b','NumColumns==1','PageTitle==CIT Healthcare Finance, Lending and Advisory Services. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_4_0=g_navNode_1_0_4.addNode('120','Who We Are',ssUrlPrefix + 'products-and-services/corporate-finance/healthcare/who-we-are/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Healthcare Finance, Lending and Advisory Services - Who We Are','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_4_1=g_navNode_1_0_4.addNode('121','What We Do',ssUrlPrefix + 'products-and-services/corporate-finance/healthcare/what-we-do/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Healthcare Finance, Lending and Advisory Services - What We Do','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_4_3=g_navNode_1_0_4.addNode('100115','Case Studies',ssUrlPrefix + 'products-and-services/corporate-finance/healthcare/case-studies/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Healthcare Finance, Lending and Advisory Services - Case Studies','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_0_4_4=g_navNode_1_0_4.addNode('123','Healthcare Conference',ssUrlPrefix + 'products-and-services/corporate-finance/healthcare/conference/index.htm','ImageType==2','NumColumns==1','PageTitle==Fourth Annual CIT Healthcare Conference');
g_navNode_1_0_4_5=g_navNode_1_0_4.addNode('100193','Podcasts',ssUrlPrefix + 'products-and-services/corporate-finance/healthcare/podcasts/index.htm','ImageType==2','NumColumns==1','PageTitle==Healthcare Podcasts - CIT 5 Minute Capital ','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_0_4_6=g_navNode_1_0_4.addNode('124','Contact Us',ssUrlPrefix + 'products-and-services/corporate-finance/healthcare/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Healthcare Finance, Lending and Advisory Services - Contact Us','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_5=g_navNode_1_0.addNode('125','Investment Banking Services',ssUrlPrefix + 'products-and-services/corporate-finance/investment-banking-services/index.htm','ImageType==1','NumColumns==2','PageTitle==CIT Investment Banking Services. Business Acquisition Financing. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_5_0=g_navNode_1_0_5.addNode('126','Edgeview',ssUrlPrefix + 'products-and-services/corporate-finance/investment-banking-services/edgeview/index.htm');
g_navNode_1_0_5_1=g_navNode_1_0_5.addNode('127','Sponsor Finance',ssUrlPrefix + 'products-and-services/corporate-finance/investment-banking-services/sponsor-finance/index.htm','ImageType==1','NumColumns==3','PageTitle==CIT Investment Equity, Subordinated Debt Securities and Equity Investment. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_5_1_0=g_navNode_1_0_5_1.addNode('693','Who We Are',ssUrlPrefix + 'products-and-services/corporate-finance/investment-banking-services/sponsor-finance/who-we-are/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Investment Equity, Subordinated Debt Securities and Equity Investment - Who We Are ','ShowLHN==TRUE');
g_navNode_1_0_5_1_1=g_navNode_1_0_5_1.addNode('694','What We Do',ssUrlPrefix + 'products-and-services/corporate-finance/investment-banking-services/sponsor-finance/what-we-do/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Investment Equity, Subordinated Debt Securities and Equity Investment - What We Do ','ShowLHN==TRUE');
g_navNode_1_0_5_1_2=g_navNode_1_0_5_1.addNode('695','Contact Us',ssUrlPrefix + 'products-and-services/corporate-finance/investment-banking-services/sponsor-finance/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Investment Equity, Subordinated Debt Securities and Equity Investment - Contact Us','ShowLHN==TRUE');
g_navNode_1_0_6=g_navNode_1_0.addNode('128','Syndicated Loan Group',ssUrlPrefix + 'products-and-services/corporate-finance/syndicated-loan-group/index.htm','ImageType==1','NumColumns==2','PageTitle==CIT Syndicated Commercial Loans and Distressed Commercial Debt. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_6_0=g_navNode_1_0_6.addNode('129','What We Do',ssUrlPrefix + 'products-and-services/corporate-finance/syndicated-loan-group/what-we-do/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Syndicated Commercial Loans and Distressed Commercial Debt - What We Do','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_6_1=g_navNode_1_0_6.addNode('130','Contact Us',ssUrlPrefix + 'products-and-services/corporate-finance/syndicated-loan-group/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Syndicated Commercial Loan \x26 Distressed Debt Financing - Contact Us','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_7=g_navNode_1_0.addNode('131','Small Business Lending',ssUrlPrefix + 'products-and-services/corporate-finance/small-business-lending/index.htm','BodyTop_JavascriptTag==var axel \x3d Math.random\x28\x29\x2b\"\"\x3bvar a \x3d axel \x2a 10000000000000\x3bdocument.write\x28\\x27\x3cIFRAME SRC\x3d\"http\x3a//fls.doubleclick.net/activityi\x3bsrc\x3d1632002\x3btype\x3dcitse865\x3bcat\x3dsmall536\x3bord\x3d1\x3bnum\x3d\\x27\x2b a \x2b \\x27?\" WIDTH\x3d1 HEIGHT\x3d1 FRAMEBORDER\x3d0\x3e\x3c/IFRAME\x3e\\x27\x29\x3b','BodyTop_NonJavascriptTag==\x3cIFRAME SRC\x3d\"http\x3a//fls.doubleclick.net/activityi\x3bsrc\x3d1632002\x3btype\x3dcitse865\x3bcat\x3dsmall536\x3bord\x3d1\x3bnum\x3d1?\" WIDTH\x3d1 HEIGHT\x3d1 FRAMEBORDER\x3d0\x3e\x3c/IFRAME\x3e','ImageType==1','NumColumns==1','PageTitle==CIT Small Business Lending - Collateralized and government-secured loans to small businesses ','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_1_0_7_0=g_navNode_1_0_7.addNode('132','Who We Are',ssUrlPrefix + 'products-and-services/corporate-finance/small-business-lending/who-we-are/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Small Business Lending - Collateralized and government-secured loans to small businesses - Who We Are','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_7_1=g_navNode_1_0_7.addNode('133','What We Do',ssUrlPrefix + 'products-and-services/corporate-finance/small-business-lending/what-we-do/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Small Business Lending - Collateralized and government-secured loans to small businesses - What We Do ','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_0_7_2=g_navNode_1_0_7.addNode('50100','Case Studies',ssUrlPrefix + 'products-and-services/corporate-finance/small-business-lending/case-studies/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Small Business Lending - Collateralized and government-secured loans to small businesses - Case Studies','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_0_7_3=g_navNode_1_0_7.addNode('134','Contact Us',ssUrlPrefix + 'products-and-services/corporate-finance/small-business-lending/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Small Business Lending - Collateralized and government-secured loans to small businesses - Contact Us','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_1=g_navNode_1.addNode('135','Trade Finance',ssUrlPrefix + 'products-and-services/trade-finance/index.htm','BodyTop_JavascriptTag==var axel \x3d Math.random\x28\x29\x2b\"\"\x3bvar a \x3d axel \x2a 10000000000000\x3bdocument.write\x28\\x27\x3cIFRAME SRC\x3d\"http\x3a//fls.doubleclick.net/activityi\x3bsrc\x3d1632002\x3btype\x3dcitse865\x3bcat\x3dtrade202\x3bord\x3d1\x3bnum\x3d\\x27\x2b a \x2b \\x27?\" WIDTH\x3d1 HEIGHT\x3d1 FRAMEBORDER\x3d0\x3e\x3c/IFRAME\x3e\\x27\x29\x3b','BodyTop_NonJavascriptTag==\x3cIFRAME SRC\x3d\"http\x3a//fls.doubleclick.net/activityi\x3bsrc\x3d1632002\x3btype\x3dcitse865\x3bcat\x3dtrade202\x3bord\x3d1\x3bnum\x3d1?\" WIDTH\x3d1 HEIGHT\x3d1 FRAMEBORDER\x3d0\x3e\x3c/IFRAME\x3e','ImageType==1','NumColumns==3','PageTitle==CIT Trade Finance, Business and Commercial Credit and Factoring Services. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_1_1_0=g_navNode_1_1.addNode('136','Commercial Credit',ssUrlPrefix + 'products-and-services/trade-finance/commercial-credit/index.htm','ImageType==1','NumColumns==2','PageTitle==CIT Commercial Credit - Commercial and Business Credit Line - Resolving and Factor Lines of Credit','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_1_0_0=g_navNode_1_1_0.addNode('137','What We Do',ssUrlPrefix + 'products-and-services/trade-finance/commercial-credit/what-we-do/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Commercial Credit - Commercial and Business Credit Line - Resolving and Factor Lines of Credit- What We Do','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_1_0_1=g_navNode_1_1_0.addNode('138','Contact Us',ssUrlPrefix + 'products-and-services/trade-finance/commercial-credit/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Commercial Credit - Commercial and Business Credit Line - Resolving and Factor Lines of Credit- Contact Us','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_1_1=g_navNode_1_1.addNode('139','Commercial Services',ssUrlPrefix + 'products-and-services/trade-finance/commercial-services/index.htm','ImageType==1','NumColumns==2','PageTitle==CIT Commercial Services - Financing and Technology Advisory and Services, Diversified Financial Services ','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_1_1_0=g_navNode_1_1_1.addNode('140','Factoring Services',ssUrlPrefix + 'products-and-services/trade-finance/commercial-services/factoring-services/index.htm','ImageType==2','NumColumns==3','PageTitle==CIT Group - CIT Commercial Services \x3e Factoring Services','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_1_1_1=g_navNode_1_1_1.addNode('141','Credit Protection',ssUrlPrefix + 'products-and-services/trade-finance/commercial-services/credit-protection/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Commercial Services \x3e Credit Protection','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_1_1_2=g_navNode_1_1_1.addNode('142','Select Customer Credit Protection',ssUrlPrefix + 'products-and-services/trade-finance/commercial-services/select-customer-credit-protection/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Commercial Services \x3e Select Customer Credit Protection','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_1_1_3=g_navNode_1_1_1.addNode('143','Concentration Risk Management',ssUrlPrefix + 'products-and-services/trade-finance/commercial-services/concentration-risk-management/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Commercial Services \x3e Concentration Risk Management','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_1_1_4=g_navNode_1_1_1.addNode('144','Electronic Trade Acceptance Draft',ssUrlPrefix + 'products-and-services/trade-finance/commercial-services/electronic-trade-acceptance-draft/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Commercial Services \x3e Electronic Trade Acceptance Draft','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_1_1_5=g_navNode_1_1_1.addNode('145','Bulk Sale of Accounts Receivable',ssUrlPrefix + 'products-and-services/trade-finance/commercial-services/bulk-sale-of-accounts-receivable/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Commercial Services \x3e Bulk Sale of Accounts Receivable','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_1_1_6=g_navNode_1_1_1.addNode('146','E-commerce Services',ssUrlPrefix + 'products-and-services/trade-finance/commercial-services/ecommerce-services/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Receivables Financing, Credit Risk Management \x26 Commercial Lending. CIT.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_1_1_7=g_navNode_1_1_1.addNode('50084','Case Studies',ssUrlPrefix + 'products-and-services/trade-finance/commercial-services/case-studies/index.htm','ImageType==2','NumColumns==1','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_1_1_8=g_navNode_1_1_1.addNode('147','Contact Us',ssUrlPrefix + 'products-and-services/trade-finance/commercial-services/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Commercial Services \x3e Contact Us','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_1_1_9=g_navNode_1_1_1.addNode('100213','Letter to Factoring Clients from John F. Daly',ssUrlPrefix + 'products-and-services/trade-finance/commercial-services/letter-to-factoring-clients/index.htm','ImageType==2','NumColumns==1','PageTitle==Letter to CIT Factoring Clients\x3a CIT Provides \x241 Billion to Factoring Unit','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_1_2=g_navNode_1_1.addNode('148','Commercial Services, International',ssUrlPrefix + 'products-and-services/trade-finance/commercial-services-intl/index.htm','ImageType==1','NumColumns==2','PageTitle==CIT Trade Finance,  Commercial Services, International','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_1_2_0=g_navNode_1_1_2.addNode('149','Asia',ssUrlPrefix + 'products-and-services/trade-finance/commercial-services-intl/asia/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT  Commercial Services, International \x3e Asia','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_1_2_1=g_navNode_1_1_2.addNode('150','Europe',ssUrlPrefix + 'products-and-services/trade-finance/commercial-services-intl/europe/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT  Commercial Services, International \x3e Europe','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_1_2_2=g_navNode_1_1_2.addNode('151','Export Working Capital Guarantee Program',ssUrlPrefix + 'products-and-services/trade-finance/commercial-services-intl/export-working-capital-guarantee-program/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT  Commercial Services, International \x3e Export Working Capital Guarantee Program','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_1_2_3=g_navNode_1_1_2.addNode('152','Export Trade Credit Protection',ssUrlPrefix + 'products-and-services/trade-finance/commercial-services-intl/export-trade-credit-protection/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Commercial Services, International \x3e Export Trade Credit Protection','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_1_2_4=g_navNode_1_1_2.addNode('287','Electronic Trade Acceptance Draft',ssUrlPrefix + 'products-and-services/trade-finance/commercial-services-intl/electronic-trade-acceptance-draft/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Commercial Services \x3e Electronic Trade Acceptance Draft','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_1_2_5=g_navNode_1_1_2.addNode('295','Import Trade Credit Protection',ssUrlPrefix + 'products-and-services/trade-finance/commercial-services-intl/import-trade-credit-protection/index.htm','ImageType==2','NumColumns==1','PageTitle==Commercial Services, International \x3e Import Trade Credit Protection','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_1_2_6=g_navNode_1_1_2.addNode('296','Export Select Customer Credit Protection',ssUrlPrefix + 'products-and-services/trade-finance/commercial-services-intl/export-select-customer-credit-protection/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Commercial Services, International \x3e Export Select Customer Credit Protection','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_1_2_7=g_navNode_1_1_2.addNode('297','Export-Import Bank Medium Term Guarantee Program',ssUrlPrefix + 'products-and-services/trade-finance/commercial-services-intl/exim-bank-medium-term-guarantee-program./index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Commercial Services, International \x3e Export-Import Bank Medium Term Guarantee Program','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_1_2_8=g_navNode_1_1_2.addNode('298','Contact Us',ssUrlPrefix + 'products-and-services/trade-finance/commercial-services-intl/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT  Commercial Services, International \x3e Contact Us','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_1_3=g_navNode_1_1.addNode('100195','Podcasts',ssUrlPrefix + 'products-and-services/trade-finance/podcasts/index.htm','ImageType==2','NumColumns==1','PageTitle==Trade Finance Podcasts - Factoring - 5 Minute Capital ','ShowBreadcrumb==true','ShowLHN==true','ShowShareButton==true');
g_navNode_1_2=g_navNode_1.addNode('340','Transportation Finance',ssUrlPrefix + 'products-and-services/transportation-finance/index.htm','ImageType==1','NumColumns==2','PageTitle==CIT Transportation Equipment Financing - CIT Transportation. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_1_2_0=g_navNode_1_2.addNode('341','Aerospace',ssUrlPrefix + 'products-and-services/transportation-finance/aerospace/index.htm','ImageType==1','NumColumns==1','PageTitle==CIT Aerospace - Aircraft Leasing, Aircraft Financing, Aircraft Leasing Company','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_2_0_0=g_navNode_1_2_0.addNode('342','What We Do',ssUrlPrefix + 'products-and-services/transportation-finance/aerospace/what-we-do/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Aerospace \x3e What We Do','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_2_0_1=g_navNode_1_2_0.addNode('848','Case Studies',ssUrlPrefix + 'products-and-services/transportation-finance/aerospace/case-studies/index.htm','ImageType==2','NumColumns==1','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_2_0_2=g_navNode_1_2_0.addNode('100194','Podcasts',ssUrlPrefix + 'products-and-services/transportation-finance/aerospace/podcasts/index.htm','ImageType==2','NumColumns==1','PageTitle==Aerospace Podcasts - CIT 5 Minute Capital ','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_2_0_3=g_navNode_1_2_0.addNode('343','Commercial Airlines',ssUrlPrefix + 'products-and-services/transportation-finance/aerospace/commercial-airlines/index.htm','ImageType==1','NumColumns==3','PageTitle==Commercial Airlines Leasing - Aircraft Leasing, Aircraft Financing, Aircraft Leasing Company','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_2_0_3_0=g_navNode_1_2_0_3.addNode('348','Who We Are',ssUrlPrefix + 'products-and-services/transportation-finance/aerospace/commercial-airlines/who-we-are/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Aerospace \x3e Aerospace and Defense Finance \x3e Who We Are','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_2_0_3_1=g_navNode_1_2_0_3.addNode('352','What We Do',ssUrlPrefix + 'products-and-services/transportation-finance/aerospace/commercial-airlines/what-we-do/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Aerospace \x3e What We Do','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_2_0_3_2=g_navNode_1_2_0_3.addNode('356','Contact Us',ssUrlPrefix + 'products-and-services/transportation-finance/aerospace/commercial-airlines/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Commercial Airlines  \x3e Contact Us','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_2_0_3_3=g_navNode_1_2_0_3.addNode('100111','Portfolio',ssUrlPrefix + 'products-and-services/transportation-finance/aerospace/commercial-airlines/portfolio/index.htm','ImageType==2','NumColumns==2','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_2_0_4=g_navNode_1_2_0.addNode('361','Business Aircraft',ssUrlPrefix + 'products-and-services/transportation-finance/aerospace/business-aircraft/index.htm','ImageType==1','NumColumns==2','PageTitle==CIT Aerospace, Business Aircraft - Corporate Aircraft Leasing \x26 Financing - Aircraft Leasing Company','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_2_0_4_0=g_navNode_1_2_0_4.addNode('363','What We Do',ssUrlPrefix + 'products-and-services/transportation-finance/aerospace/business-aircraft/what-we-do/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Business Aircraft \x3e What We Do','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_2_0_4_1=g_navNode_1_2_0_4.addNode('367','Contact Us',ssUrlPrefix + 'products-and-services/transportation-finance/aerospace/business-aircraft/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Business Aircraft \x3e Contact Us','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_2_0_5=g_navNode_1_2_0.addNode('368','Leveraged Finance, Transportation ',ssUrlPrefix + 'products-and-services/transportation-finance/aerospace/leveraged-finance-transportation/index.htm','ImageType==1','NumColumns==3','PageTitle==CIT Aerospace - Leveraged Finance, Transportation - aerospace and defense corporate financing - cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_2_0_5_0=g_navNode_1_2_0_5.addNode('370','Who We Are',ssUrlPrefix + 'products-and-services/transportation-finance/aerospace/leveraged-finance-transportation/who-we-are/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - Leveraged Finance, Transportation - cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_2_0_5_1=g_navNode_1_2_0_5.addNode('377','What We Do',ssUrlPrefix + 'products-and-services/transportation-finance/aerospace/leveraged-finance-transportation/what-we-do/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - Leveraged Finance, Transportation - cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_2_0_5_1_0=g_navNode_1_2_0_5_1.addNode('100198','Marine Financing ',ssUrlPrefix + 'products-and-services/transportation-finance/aerospace/leveraged-finance-transportation/what-we-do/marine-financing/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Customized Marine Financing Solutions','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_2_0_5_2=g_navNode_1_2_0_5.addNode('379','Contact Us',ssUrlPrefix + 'products-and-services/transportation-finance/aerospace/leveraged-finance-transportation/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - Leveraged Finance, Transportation - cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_2_0_6=g_navNode_1_2_0.addNode('100065','Team ',ssUrlPrefix + 'products-and-services/transportation-finance/aerospace/team/index.htm','ImageType==2','NumColumns==1','ShowBreadcrumb==true','ShowLHN==true','secondaryUrlVariableField==region5');
g_navNode_1_2_0_7=g_navNode_1_2_0.addNode('100225','Locations',ssUrlPrefix + 'products-and-services/transportation-finance/aerospace/cit-aerospace-locations/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Aerospace \x3e Locations','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_2_1=g_navNode_1_2.addNode('395','Rail',ssUrlPrefix + 'products-and-services/transportation-finance/rail/index.htm','ImageType==1','NumColumns==3','PageTitle==CIT Rail - Rail Car Leasing','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_2_1_0=g_navNode_1_2_1.addNode('396','Who We Are',ssUrlPrefix + 'products-and-services/transportation-finance/rail/who-we-are/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Rail  \x3e Who We Are','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_2_1_1=g_navNode_1_2_1.addNode('397','What We Do',ssUrlPrefix + 'products-and-services/transportation-finance/rail/what-we-do/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Rail \x3e What We Do','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_2_1_2=g_navNode_1_2_1.addNode('398','Contact Us',ssUrlPrefix + 'products-and-services/transportation-finance/rail/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Rail \x3e Contact Us','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_3=g_navNode_1.addNode('400','Vendor Finance',ssUrlPrefix + 'products-and-services/vendor-finance/index.htm','ImageType==1','NumColumns==1','PageTitle==CIT Business Equipment, Capital Equipment and Vendor Financing. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_1_3_0=g_navNode_1_3.addNode('406','Diversified Industries',ssUrlPrefix + 'products-and-services/vendor-finance/diversified-industries/index.htm','ImageType==1','NumColumns==2','PageTitle==CIT Business and Capital Equipment Leasing and Vendor Finance. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_3_0_0=g_navNode_1_3_0.addNode('408','What We Do',ssUrlPrefix + 'products-and-services/vendor-finance/diversified-industries/what-we-do/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Diversified Industries \x3e What We Do','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_3_0_1=g_navNode_1_3_0.addNode('409','Contact Us',ssUrlPrefix + 'products-and-services/vendor-finance/diversified-industries/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group Vendor Equipment Financing \x26 Business Equipment Lease Financing. CIT.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_3_1=g_navNode_1_3.addNode('418','Technology and Office Equipment',ssUrlPrefix + 'products-and-services/vendor-finance/technology-office-equipment/index.htm','ImageType==1','NumColumns==1','PageTitle==Business equipment leasing and financing, computer equipment leasing and financing, IT equipment leasing, IT equipment financing, CIT','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_3_1_0=g_navNode_1_3_1.addNode('420','Who We Are',ssUrlPrefix + 'products-and-services/vendor-finance/technology-office-equipment/who-we-are/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Technology and Office Equipment, Leasing - Who We Are ','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_3_1_1=g_navNode_1_3_1.addNode('422','What We Do',ssUrlPrefix + 'products-and-services/vendor-finance/technology-office-equipment/what-we-do/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Technology and Office Equipment, Leasing - What We Do','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_3_1_2=g_navNode_1_3_1.addNode('423','Web Solutions        ',ssUrlPrefix + 'products-and-services/vendor-finance/technology-office-equipment/web-solutions/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Technology and Office Equipment, Web Solutions','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_3_1_3=g_navNode_1_3_1.addNode('426','Benefits of Leasing',ssUrlPrefix + 'products-and-services/vendor-finance/technology-office-equipment/benefits-of-leasing/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Technology and Office Equipment, Benefits of Leasing','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_3_1_4=g_navNode_1_3_1.addNode('428','Contact Us',ssUrlPrefix + 'products-and-services/vendor-finance/technology-office-equipment/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Group Business Computer, Office \x26 IT Equipment Lease \x26 Finance. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_3_2=g_navNode_1_3.addNode('50101','Case Studies',ssUrlPrefix + 'products-and-services/vendor-finance/case-studies/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Business Equipment, Capital Equipment and Vendor Financing - Case Studies','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_1_4=g_navNode_1.addNode('434','Insurance Services',ssUrlPrefix + 'products-and-services/insurance-services/index.htm','ImageType==1','NumColumns==3','PageTitle==CIT  Business Insurance Services and Personal Insurance. cit.com.','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_1_4_0=g_navNode_1_4.addNode('437','Who We Are',ssUrlPrefix + 'products-and-services/insurance-services/who-we-are/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group -CIT Group.Insurance Services.Who We Are','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_4_1=g_navNode_1_4.addNode('438','What We Do',ssUrlPrefix + 'products-and-services/insurance-services/what-we-do/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Group.Insurance Services.What We Do','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_4_2=g_navNode_1_4.addNode('440','Contact Us',ssUrlPrefix + 'products-and-services/insurance-services/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Group Corporate Insurance Services \x26 Insurance for Individuals. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_1_5=g_navNode_1.addNode('442','CIT Bank',ssUrlPrefix + 'products-and-services/cit-bank/index.htm','ImageType==1','NumColumns==1','PageTitle==CIT Bank ','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_1_6=g_navNode_1.addNode('100039','Case Studies',ssUrlPrefix + 'products-and-services/case-studies/index.htm');
g_navNode_1_7=g_navNode_1.addNode('445','Solutions A-Z',ssUrlPrefix + 'products-and-services/solutions-a-z/index.htm','ImageType==1','NumColumns==3','PageTitle==CIT Solutions A to Z - Capital Equipment Leasing, Equipment Financing - Corporate Venture Capital','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_1_7_0=g_navNode_1_7.addNode('446','By Products \x26 Services',ssUrlPrefix + 'products-and-services/solutions-a-z/products-services/index.htm','ImageType==2','NumColumns==1','PageTitle==Solutions A-Z \x3e By Products \x26 Services','ShowLHN==TRUE');
g_navNode_1_7_0_0=g_navNode_1_7_0.addNode('840','By Products \x26 Services A-C',ssUrlPrefix + 'products-and-services/solutions-a-z/products-services/1-products-services/index.htm','ImageType==2','NumColumns==1','PageTitle==Solutions  By Products \x26 Services \x28A-C\x29','ShowLHN==TRUE');
g_navNode_1_7_0_1=g_navNode_1_7_0.addNode('841','By Products \x26 Services D-L',ssUrlPrefix + 'products-and-services/solutions-a-z/products-services/2-products-services/index.htm','ImageType==2','NumColumns==1','PageTitle==Solutions  By Products \x26 Services \x28D-L\x29','ShowLHN==TRUE');
g_navNode_1_7_0_2=g_navNode_1_7_0.addNode('842','By Products \x26 Services M-R',ssUrlPrefix + 'products-and-services/solutions-a-z/products-services/3-products-services/index.htm','ImageType==2','NumColumns==1','PageTitle==Solutions  By Products \x26 Services \x28M-R\x29','ShowLHN==TRUE');
g_navNode_1_7_0_3=g_navNode_1_7_0.addNode('843','By Products \x26 Services S-Z',ssUrlPrefix + 'products-and-services/solutions-a-z/products-services/4-products-services/index.htm','ImageType==2','NumColumns==1','PageTitle==Solutions  By Products \x26 Services \x28S-Z\x29','ShowLHN==TRUE');
g_navNode_1_7_1=g_navNode_1_7.addNode('448','By Industry',ssUrlPrefix + 'products-and-services/solutions-a-z/solutions-industry/index.htm','ImageType==2','NumColumns==1','PageTitle==Solutions A-Z \x3e By Industry','ShowBreadcrumb==FALSE','ShowLHN==TRUE');
g_navNode_1_7_1_0=g_navNode_1_7_1.addNode('305','By Industry A-F',ssUrlPrefix + 'products-and-services/solutions-a-z/solutions-industry/4-solutions-industry/index.htm','ImageType==2','NumColumns==1','PageTitle==Solutions By Industry \x28A-F\x29','ShowLHN==TRUE');
g_navNode_1_7_1_1=g_navNode_1_7_1.addNode('306','By Industry G-O',ssUrlPrefix + 'products-and-services/solutions-a-z/solutions-industry/5-solutions-industry/index.htm','ImageType==2','NumColumns==1','PageTitle==Solutions By Industry \x28G-O\x29','ShowLHN==TRUE');
g_navNode_1_7_1_2=g_navNode_1_7_1.addNode('307','By Industry P-Z',ssUrlPrefix + 'products-and-services/solutions-a-z/solutions-industry/6-solutions-industry/index.htm','ImageType==2','NumColumns==1','PageTitle==Solutions By Industry \x28P-Z\x29','ShowLHN==TRUE');
g_navNode_1_7_2=g_navNode_1_7.addNode('451','By Business Phase',ssUrlPrefix + 'products-and-services/solutions-a-z/business-phase/index.htm','ImageType==2','NumColumns==1','PageTitle==Solutions A-Z \x3e By Business Phase','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2=g_navNode_Root.addNode('455','CIT Worldwide',ssUrlPrefix + 'cit-worldwide/index.htm','ImageType==1','PageTitle==CIT International Financing, Loans. cit.com','ShowBreadcrumb==true','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_2_0=g_navNode_2.addNode('457','Asia',ssUrlPrefix + 'cit-worldwide/asia/index.htm','ImageType==1','NumColumns==2','PageTitle==CIT Asia - Aircraft Financing \x26 Leasing, \x26 Vendor Financing .cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_0_0=g_navNode_2_0.addNode('458','Aerospace',ssUrlPrefix + 'cit-worldwide/asia/aerospace/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Group Asia.Aerospace','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_0_1=g_navNode_2_0.addNode('459','Commercial Services',ssUrlPrefix + 'cit-worldwide/asia/commercial-services/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Group Asia.Commercial Services','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_0_2=g_navNode_2_0.addNode('460','Vendor Finance',ssUrlPrefix + 'cit-worldwide/asia/vendor-finance/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Group Asia.Vendor Finance','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_0_3=g_navNode_2_0.addNode('461','Contact Us',ssUrlPrefix + 'cit-worldwide/asia/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - Contact CIT Asia. Project Financing \x26 Banking in Asia. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_1=g_navNode_2.addNode('565','Australia and New Zealand',ssUrlPrefix + 'cit-worldwide/australia-new-zealand/index.htm','ImageType==1','NumColumns==1','PageTitle==CIT Australia \x26 New Zealand - Equipment Financing. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_1_0=g_navNode_2_1.addNode('566','Consumer and Home',ssUrlPrefix + 'cit-worldwide/australia-new-zealand/consumer-home/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Group Australia \x26 New Zealand.Consumer/Home','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_1_2=g_navNode_2_1.addNode('571','Corporate Solutions',ssUrlPrefix + 'cit-worldwide/australia-new-zealand/corporate-solutions/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Group Australia \x26 New Zealand.Corporate Solutions','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_1_3=g_navNode_2_1.addNode('572','Education Solutions',ssUrlPrefix + 'cit-worldwide/australia-new-zealand/education-solutions/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Group Australia \x26 New Zealand.Education Solutions','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_1_4=g_navNode_2_1.addNode('573','Government Solutions',ssUrlPrefix + 'cit-worldwide/australia-new-zealand/government-solutions/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Group Australia \x26 New Zealand.Government Solutions','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_1_5=g_navNode_2_1.addNode('574','Small Business',ssUrlPrefix + 'cit-worldwide/australia-new-zealand/small-business/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Group Australia \x26 New Zealand.Small Business','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_1_6=g_navNode_2_1.addNode('576','Contact Us',ssUrlPrefix + 'cit-worldwide/australia-new-zealand/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Australia \x26 New Zealand \x3e Contact Us','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_2=g_navNode_2.addNode('462','Canada',ssUrlPrefix + 'cit-worldwide/canada/index.htm','ImageType==1','NumColumns==1','PageTitle==CIT Canada - Project Financing, Loans, Leasing. cit.com','ShowLHN==TRUE');
g_navNode_2_2_0=g_navNode_2_2.addNode('463','Healthcare',ssUrlPrefix + 'cit-worldwide/canada/healthcare/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Canada - Medical Practice \x26 Equipment Financing \x26 Loans. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_2_1=g_navNode_2_2.addNode('464','Equipment Finance',ssUrlPrefix + 'cit-worldwide/canada/equipment-finance/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Canada - Equipment Finance \x26 Financing for Industrial Equipment. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_2_1_0=g_navNode_2_2_1.addNode('100140','Equipment For Sale',ssUrlPrefix + 'cit-worldwide/canada/equipment-finance/equipment-for-sale/index.htm','ImageType==2','PageTitle==EF Canada Equipment For Sale','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_2_2_2=g_navNode_2_2.addNode('465','Corporate Finance',ssUrlPrefix + 'cit-worldwide/canada/corporate-finance/index.htm','ImageType==1','NumColumns==1','PageTitle==CIT Canada - Business Lending, Commercial Leasing \x26 Investment Equity. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_2_2_0=g_navNode_2_2_2.addNode('467','Sponsor Finance',ssUrlPrefix + 'cit-worldwide/canada/corporate-finance/sponsor-finance/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Canada \x3e Sponsor Finance','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_2_3=g_navNode_2_2.addNode('512','Vendor Finance',ssUrlPrefix + 'cit-worldwide/canada/vendor-finance/index.htm','ImageType==1','NumColumns==1','PageTitle==CIT Canada - Vendor Finance, Business Equipment Leasing \x26 Financing. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_2_3_0=g_navNode_2_2_3.addNode('513','Technology \x26 Office Equipment',ssUrlPrefix + 'cit-worldwide/canada/vendor-finance/technology-and-office-equipment/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Canada \x3e Technology \x26 Office Equipment','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_2_3_1=g_navNode_2_2_3.addNode('514','Dell Financial Services',ssUrlPrefix + 'cit-worldwide/canada/vendor-finance/dell-financial-services/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Vendor Finance \x3e Dell Financial Services','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_2_4=g_navNode_2_2.addNode('517','Energy \x26 Infrastructure',ssUrlPrefix + 'cit-worldwide/canada/energy-and-infrastructure/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Canada - Energy Financing \x26 Infrastructure Project Finance. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_2_5=g_navNode_2_2.addNode('518','Business Credit',ssUrlPrefix + 'cit-worldwide/canada/business-credit/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Canada - Asset Based Financing, Lending \x26 Loans. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_2_6=g_navNode_2_2.addNode('519','Contact Us',ssUrlPrefix + 'cit-worldwide/canada/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Canada \x3e Contact Us','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3=g_navNode_2.addNode('520','Europe',ssUrlPrefix + 'cit-worldwide/europe/index.htm','ImageType==1','NumColumns==2','PageTitle==CIT Europe - Vendor Financing, Equipment Financing. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_0=g_navNode_2_3.addNode('523','Aerospace',ssUrlPrefix + 'cit-worldwide/europe/aerospace/index.htm','ImageType==1','NumColumns==1','PageTitle==CIT Aerospace Europe. Aircraft Leasing. Aircraft Financing Europe. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_0_0=g_navNode_2_3_0.addNode('526','Commercial Airlines',ssUrlPrefix + 'cit-worldwide/europe/aerospace/commercial-Airlines/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Aerospace. Commercial Aircraft Leasing Europe. European Commercial Airlines.cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_0_1=g_navNode_2_3_0.addNode('527','Business Aircraft',ssUrlPrefix + 'cit-worldwide/europe/aerospace/business-aircraft/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Aerospace, Corporate Aircraft Leasing Europe, Business Aircraft Financing. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_0_2=g_navNode_2_3_0.addNode('528','Aerospace \x26 Defence Finance',ssUrlPrefix + 'cit-worldwide/europe/aerospace/aerospace-and-defence-finance/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Group.Worldwide.Europe.Aerospace and Defence Finance.cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_0_3=g_navNode_2_3_0.addNode('529','Contact Us',ssUrlPrefix + 'cit-worldwide/europe/aerospace/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - Aerospace Financing. Contact Us','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_1=g_navNode_2_3.addNode('530','European Leveraged Finance',ssUrlPrefix + 'cit-worldwide/europe/european-leveraged-finance/index.htm','ImageType==1','NumColumns==1','PageTitle==CIT Europe. European Leveraged Finance. Structured Finance Europe. cit.com ','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_1_0=g_navNode_2_3_1.addNode('531','Who We Are',ssUrlPrefix + 'cit-worldwide/europe/european-leveraged-finance/who-we-are/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Group Worldwide.Europe.European Leveraged Finance.Who We Are.cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_1_1=g_navNode_2_3_1.addNode('532','What We Do',ssUrlPrefix + 'cit-worldwide/europe/european-leveraged-finance/what-we-do/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Group Worldwide.Europe.European Leveraged Finance.What We Do.cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_1_1_0=g_navNode_2_3_1_1.addNode('533','Commercial and Industrial',ssUrlPrefix + 'cit-worldwide/europe/european-leveraged-finance/what-we-do/commercial-and-industrial/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Europe. Accounts Receivable Financing, Factoring \x26 Asset Based Finance. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_1_1_1=g_navNode_2_3_1_1.addNode('534','Communications Media and Entertainment',ssUrlPrefix + 'cit-worldwide/europe/european-leveraged-finance/what-we-do/communications-media-and-entertainment/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Group. Europe.European Leveraged Finance.What We Do.Communications, Media \x26 Entertainment.cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_1_1_2=g_navNode_2_3_1_1.addNode('535','Healthcare',ssUrlPrefix + 'cit-worldwide/europe/european-leveraged-finance/what-we-do/healthcare/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Group. Healthcare Finance Europe. European Medical Practice \x26 Equipment Financing. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_1_1_3=g_navNode_2_3_1_1.addNode('536','Sports and Gaming',ssUrlPrefix + 'cit-worldwide/europe/european-leveraged-finance/what-we-do/sports-and-gaming/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Group Worldwide.Europe.European Leveraged Finance.What We Do.cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_1_2=g_navNode_2_3_1.addNode('537','Private Equity Sponsor Finance',ssUrlPrefix + 'cit-worldwide/europe/european-leveraged-finance/private-equity-sponsor-finance/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Europe. European Private Equity Sponsor Finance. Equity Investment','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_1_3=g_navNode_2_3_1.addNode('538','Syndicated Loans',ssUrlPrefix + 'cit-worldwide/europe/european-leveraged-finance/syndicated-loans/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Europe. European Syndicated Loans. Par Loans \x26 Distressed Loans. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_1_4=g_navNode_2_3_1.addNode('539','Capital Markets',ssUrlPrefix + 'cit-worldwide/europe/european-leveraged-finance/capital-markets/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Europe. European Capital Markets. Leveraged Finance. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_1_5=g_navNode_2_3_1.addNode('541','Contact Us',ssUrlPrefix + 'cit-worldwide/europe/european-leveraged-finance/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - Contact CIT Europe. Equipment, Vendor \x26 Project Financing \x26 Banking. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_2=g_navNode_2_3.addNode('542','Trade Finance',ssUrlPrefix + 'cit-worldwide/europe/trade-finance/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - Business Credit Europe. Commercial Credit. Factoring Services Europe. Trade Finance. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_2_1=g_navNode_2_3_2.addNode('544','Contact Us',ssUrlPrefix + 'cit-worldwide/europe/trade-finance/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Group Worldwide.Europe.Trade Finance.cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_3=g_navNode_2_3.addNode('545','Vendor Finance',ssUrlPrefix + 'cit-worldwide/europe/vendor-finance/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Europe. Vendor Finance. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_3_0=g_navNode_2_3_3.addNode('546','Asset Finance',ssUrlPrefix + 'cit-worldwide/europe/vendor-finance/asset-finance/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Europe \x3e Asset Finance','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_3_1=g_navNode_2_3_3.addNode('547','European Vendor Programmes',ssUrlPrefix + 'cit-worldwide/europe/vendor-finance/european-vendor-programmes/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Europe \x3e European Programmes','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_3_2=g_navNode_2_3_3.addNode('548','Contact Us',ssUrlPrefix + 'cit-worldwide/europe/vendor-finance/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Europe, Vendor Finance, Contact Us - cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_4=g_navNode_2_3.addNode('549','Media Room',ssUrlPrefix + 'cit-worldwide/europe/media-room/index.htm','ImageType==2','PageTitle==CIT Group - CIT Europe Media Room. Latest News \x26 Press Releases','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_5=g_navNode_2_3.addNode('550','Careers',ssUrlPrefix + 'cit-worldwide/europe/careers/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Europe \x3e Media Room','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_6=g_navNode_2_3.addNode('551','Contact Us',ssUrlPrefix + 'cit-worldwide/europe/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - Contact CIT Europe. Equipment, Vendor \x26 Project Financing \x26 Banking. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_3_7=g_navNode_2_3.addNode('555','Europe Locations',ssUrlPrefix + 'cit-worldwide/europe/eu-locations/index.htm','ImageType==2','PageTitle==CIT Group - Europe \x3e Office Location Directory','ShowBreadcrumb==TRUE','ShowLHN==TRUE','lat==50','lng==8');
g_navNode_2_4=g_navNode_2.addNode('556','Latin America',ssUrlPrefix + 'cit-worldwide/latin-america/index.htm','ImageType==1','NumColumns==2','PageTitle==CIT Latin America - Vendor Financing, Equipment Financing. cit.com','ShowBreadcrumb==FALSE','ShowLHN==TRUE');
g_navNode_2_4_0=g_navNode_2_4.addNode('557','What We Do',ssUrlPrefix + 'cit-worldwide/latin-america/what-we-do/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Latin America \x3e What We Do','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_4_1=g_navNode_2_4.addNode('558','Argentina',ssUrlPrefix + 'cit-worldwide/latin-america/argentina/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Group. CIT Worldwide.Latin America.Argentina','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_4_2=g_navNode_2_4.addNode('559','Brazil',ssUrlPrefix + 'cit-worldwide/latin-america/brazil/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Group Latin America.Brazil','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_4_3=g_navNode_2_4.addNode('560','Chile',ssUrlPrefix + 'cit-worldwide/latin-america/chile/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Latin America \x3e Chile','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_4_4=g_navNode_2_4.addNode('561','Colombia',ssUrlPrefix + 'cit-worldwide/latin-america/colombia/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Latin America \x3e Colombia','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_4_4_0=g_navNode_2_4_4.addNode('100220','CIT Global Vendor Services S.A.',ssUrlPrefix + 'cit-worldwide/latin-america/colombia/cit-global-vendor-services/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Global Vendor Services S.A.','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_2_4_4_1=g_navNode_2_4_4.addNode('100221','CIT Finance Company',ssUrlPrefix + 'cit-worldwide/latin-america/colombia/cit-capita/index.htm','ImageType==2','NumColumns==1','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_2_4_5=g_navNode_2_4.addNode('562','Mexico',ssUrlPrefix + 'cit-worldwide/latin-america/mexico/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Latin America \x3e Mexico','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_4_6=g_navNode_2_4.addNode('563','Puerto Rico',ssUrlPrefix + 'cit-worldwide/latin-america/puerto-rico/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Latin America \x3e Puerto Rico','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_4_7=g_navNode_2_4.addNode('564','Contact Us',ssUrlPrefix + 'cit-worldwide/latin-america/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT Latin America - Equipment, Vendor \x26 Project Financing \x26 Banking. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_5=g_navNode_2.addNode('579','United States',ssUrlPrefix + 'cit-worldwide/united-states/index.htm','ImageType==1','NumColumns==1','PageTitle==Contact CIT - Financial Group, Investment Bank \x26 CIT Finance. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_2_5_0=g_navNode_2_5.addNode('580','Contact Us',ssUrlPrefix + 'cit-worldwide/united-states/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group - CIT United States \x3e Contact Us','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_3=g_navNode_Root.addNode('581','Careers',ssUrlPrefix + 'careers/index.htm','ImageType==1','NumColumns==1','PageTitle==CIT Finance Jobs and Careers.cit.com','ShowBreadcrumb==true','ShowLHN==TRUE');
g_navNode_3_0=g_navNode_3.addNode('582','Working At CIT',ssUrlPrefix + 'careers/working-at-cit/index.htm','ImageType==1','NumColumns==1','PageTitle==CIT Corporate Finance Careers. A Career in Corporate Finance at CIT. cit.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_3_0_0=g_navNode_3_0.addNode('583','Our Commitment to Diversity',ssUrlPrefix + 'careers/working-at-cit/our-commitment-to-diversity/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group.Careers.Our Commitment to Diversity','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_3_0_1=g_navNode_3_0.addNode('596','Our Focus',ssUrlPrefix + 'careers/working-at-cit/our-focus/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group.Careers.Working At CIT.Our Focus','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_3_0_2=g_navNode_3_0.addNode('597','Our Values',ssUrlPrefix + 'careers/working-at-cit/our-values/index.htm','ImageType==2','NumColumns==1','PageTitle==Working At CIT \x3e Our Values','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_3_1=g_navNode_3.addNode('598','What We Offer',ssUrlPrefix + 'careers/what-we-offer/index.htm','ImageType==1','NumColumns==1','PageTitle==CIT Careers.What We Offer','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_3_1_0=g_navNode_3_1.addNode('599','Advance Your Career',ssUrlPrefix + 'careers/what-we-offer/advance-your-career/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group.Careers.What We Offer.Advance your Career','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_3_1_1=g_navNode_3_1.addNode('600','Balance Work \x26 Life',ssUrlPrefix + 'careers/what-we-offer/balance-work-and-life/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group Careers.What We Offer.Balance Work \x26 Life','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_3_1_2=g_navNode_3_1.addNode('601','Manage Your Health',ssUrlPrefix + 'careers/what-we-offer/manage-your-health/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group Careers.What We Offer.Manage your Health','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_3_1_3=g_navNode_3_1.addNode('602','Plan For Your Future',ssUrlPrefix + 'careers/what-we-offer/plan-for-your-future/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group Careers.What We Offer.Plan For Your Future','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_3_1_4=g_navNode_3_1.addNode('603','Protect Your Income',ssUrlPrefix + 'careers/what-we-offer/protect-your-income/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group Careers.What We Offer.Protect Your Income','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_3_1_5=g_navNode_3_1.addNode('604','Support Your Community',ssUrlPrefix + 'careers/what-we-offer/support-your-community/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group Careers.What We Offer.Support Your Community','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_3_1_6=g_navNode_3_1.addNode('605','Understand Your Rewards',ssUrlPrefix + 'careers/what-we-offer/understand-your-rewards/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Group Careers.What We Offer.Understand Your Rewards','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_3_2=g_navNode_3.addNode('606','Search Our Jobs',ssUrlPrefix + 'careers/search-our-jobs/index.htm','NumColumns==1','PageTitle==Search CIT Finance Jobs \x26 Financial Jobs. CIT.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_3_2_0=g_navNode_3_2.addNode('607','All Jobs',ssUrlPrefix + 'careers/search-our-jobs/all-jobs/index.htm','ImageType==2','NumColumns==1','PageTitle==Search CIT Group Banking Jobs \x26 Finance Jobs. Bank \x26 Financial Jobs. CIT.com','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_3_2_1=g_navNode_3_2.addNode('608','Graduating Seniors',ssUrlPrefix + 'careers/search-our-jobs/graduating-seniors/index.htm','ImageType==2','NumColumns==1','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_4=g_navNode_Root.addNode('618','Investor Relations',ssUrlPrefix + 'investor-relations/index.htm','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_4_0=g_navNode_4.addNode('626','Presentations \x26 Events',ssUrlPrefix + 'investor-relations/presentations/index.htm');
g_navNode_4_1=g_navNode_4.addNode('620','Annual Reports',ssUrlPrefix + 'investor-relations/AnnualReports/index.htm');
g_navNode_4_2=g_navNode_4.addNode('621','Quarterly Reports',ssUrlPrefix + 'investor-relations/QuarterlyReports/index.htm');
g_navNode_4_3=g_navNode_4.addNode('100046','Press Releases',ssUrlPrefix + 'investor-relations/press-releases/index.htm');
g_navNode_4_5=g_navNode_4.addNode('622','SEC Filings',ssUrlPrefix + 'investor-relations/SECFilings/index.htm','PageTitle==CIT- Investor Relations\x3a SEC Filings');
g_navNode_4_6=g_navNode_4.addNode('100041','Analyst Coverage',ssUrlPrefix + 'investor-relations/analysts/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT- Investor Relations\x3a Analyst Coverage','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_4_7=g_navNode_4.addNode('628','Stock Information',ssUrlPrefix + 'investor-relations/StockQuotesCharts/index.htm','PageTitle==CIT- Investor Relations\x3a Stock Information');
g_navNode_4_8=g_navNode_4.addNode('633','Debt Ratings',ssUrlPrefix + 'investor-relations/DebtRatings/index.htm','PageTitle==CIT- Investor Relations\x3a Debt Ratings');
g_navNode_4_9=g_navNode_4.addNode('639','Securitization Reports',ssUrlPrefix + 'investor-relations/SecuritizationReports/index.htm','PageTitle==CIT- Investor Relations\x3a Securitization Reports');
g_navNode_4_11=g_navNode_4.addNode('735','Material Request',ssUrlPrefix + 'investor-relations/material-request/index.htm','PageTitle==CIT- Investor Relations\x3a Material Request');
g_navNode_4_12=g_navNode_4.addNode('736','Investor Contacts',ssUrlPrefix + 'investor-relations/investor-contacts/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT- Investor Relations\x3a Contact Us','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_5=g_navNode_Root.addNode('645','Media Room',ssUrlPrefix + 'media-room/index.htm','ImageType==1','NumColumns==1','PageTitle==CIT Media Room - Middle Market, Financial Services, Commercial Loan Financing, Commercial Loan - CIT','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_5_0=g_navNode_5.addNode('646','Media Contacts',ssUrlPrefix + 'media-room/media-contacts/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Media Room, Media Contacts - CIT','ShowBreadcrumb==true','ShowLHN==TRUE');
g_navNode_5_1=g_navNode_5.addNode('647','Press Releases',ssUrlPrefix + 'media-room/press-releases/index.htm','ImageType==2','PageTitle==CIT Media Room, Press Releases - CIT','ShowBreadcrumb==true','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_5_1_0=g_navNode_5_1.addNode('100149','Corporate News ',ssUrlPrefix + 'media-room/press-releases/corporate-news/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Corporate News - Press Releases ','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_5_1_1=g_navNode_5_1.addNode('100150','Financial News',ssUrlPrefix + 'media-room/press-releases/financial-news/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Financial News - Press Releases ','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_5_1_2=g_navNode_5_1.addNode('100151','Business Unit News ',ssUrlPrefix + 'media-room/press-releases/business-unit-news/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Business News - Press Releases ','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_5_2=g_navNode_5.addNode('648','Executive Sourcebook',ssUrlPrefix + 'media-room/executive-sourcebook/index.htm','ImageType==2','PageTitle==CIT Media Room.Executive Sourcebook','ShowLHN==TRUE','ShowShareButton==true','secondaryUrlVariableField==region5');
g_navNode_5_2_0=g_navNode_5_2.addNode('649','Executive Management Committee',ssUrlPrefix + 'media-room/executive-sourcebook/executive-committee/index.htm','BioListMembership==Executive Committee','ImageType==2','PageTitle==CIT Media Room.Executive Sourcebook.Executive Committee','ShowBreadcrumb==TRUE','ShowLHN==TRUE','secondaryUrlVariableField==region5');
g_navNode_5_2_1=g_navNode_5_2.addNode('650','Corporate Finance',ssUrlPrefix + 'media-room/executive-sourcebook/corporate-finance/index.htm','BioListMembership==Corporate Finance','ImageType==2','NumColumns==1','PageTitle==CIT Media Room.Executive Sourcebook.Corporate Finance','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_5_2_2=g_navNode_5_2.addNode('651','Trade Finance',ssUrlPrefix + 'media-room/executive-sourcebook/trade-finance/index.htm','BioListMembership==Trade Finance','ImageType==2','NumColumns==1','PageTitle==CIT Media Room.Executive Sourcebook.Trade Finance','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_5_2_3=g_navNode_5_2.addNode('652','Transportation Finance',ssUrlPrefix + 'media-room/executive-sourcebook/transportation-finance/index.htm','BioListMembership==Transportation Finance','ImageType==2','NumColumns==1','PageTitle==CIT Media Room.Executive Sourcebook.Transportation Finance','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_5_2_4=g_navNode_5_2.addNode('653','Vendor Finance',ssUrlPrefix + 'media-room/executive-sourcebook/vendor-finance/index.htm','BioListMembership==Vendor Finance','ImageType==2','NumColumns==1','PageTitle==CIT Media Room.Executive Sourcebook.Vendor Finance','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_5_2_5=g_navNode_5_2.addNode('654','Corporate',ssUrlPrefix + 'media-room/executive-sourcebook/corporate/index.htm','BioListMembership==Corporate','ImageType==2','NumColumns==1','PageTitle==CIT Media Room.Executive Sourcebook.Corporate','ShowBreadcrumb==TRUE','ShowLHN==TRUE');
g_navNode_5_3=g_navNode_5.addNode('100047','Executive Spotlight',ssUrlPrefix + 'media-room/executive-spotlight/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Executive Spotlight, Middle Market Insights, Thought Capital - cit.com','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_5_4=g_navNode_5.addNode('1235','Fact Sheets',ssUrlPrefix + 'media-room/fact-sheets/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT Fact Sheets - Information about CIT Businesses- cit.com ','ShowBreadcrumb==true','ShowLHN==true','ShowShareButton==true');
g_navNode_5_6=g_navNode_5.addNode('660','Corporate Giving',ssUrlPrefix + 'media-room/corporate-giving/index.htm','ShowShareButton==true');
g_navNode_5_7=g_navNode_5.addNode('661','Podcast Series\x3a 5 Minute Capital ',ssUrlPrefix + 'media-room/podcasts/index.htm');
g_navNode_5_8=g_navNode_5.addNode('662','News Alerts',ssUrlPrefix + 'media-room/news-alerts/index.htm','ImageType==2','PageTitle==CIT Media Room \x3e News Alerts','ShowBreadcrumb==TRUE','ShowLHN==TRUE','ShowShareButton==true');
g_navNode_6=g_navNode_Root.addNode('663','Contact Us',ssUrlPrefix + 'contact-us/index.htm','ImageType==1','MediaMath==http\x3a//ad.yieldmanager.com/pixel?id\x3d139455\x26id\x3d139458\x26id\x3d75240\x26id\x3d137414\x26t\x3d1','NumColumns==1','PageTitle==Contact CIT - US \x26 Global Financial Services. cit.com','ScriptCodeSRC_1==http\x3a//view.atdmt.com/jaction/k01cit_ContactUsPage_1','ShowBreadcrumb==true','ShowLHN==true','ShowShareButton==true');
g_navNode_6_1=g_navNode_6.addNode('100038','Business Contacts',ssUrlPrefix + 'contact-us/business-contacts/index.htm');
g_navNode_6_2=g_navNode_6.addNode('666','Student Loan Servicing',ssUrlPrefix + 'contact-us/student-loan-servicing/index.htm','ImageType==1','NumColumns==3','PageTitle==CIT Group Xpress Loan Servicing. Student Loan Servicing Company. cit.com','ShowLHN==TRUE');
g_navNode_6_2_0=g_navNode_6_2.addNode('667','Who We Are',ssUrlPrefix + 'contact-us/student-loan-servicing/who-we-are/index.htm','ImageType==2','NumColumns==1','ShowBreadcrumb==true','ShowLHN==TRUE');
g_navNode_6_2_1=g_navNode_6_2.addNode('50088','What We Do ',ssUrlPrefix + 'contact-us/student-loan-servicing/what-we-do/index.htm','ImageType==2','NumColumns==1','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_6_2_2=g_navNode_6_2.addNode('669','Contact Us',ssUrlPrefix + 'contact-us/student-loan-servicing/contact-us/index.htm','ImageType==2','NumColumns==1','ShowBreadcrumb==true','ShowLHN==true');
if (SSContributor)
{
g_navNode_7=g_navNode_Root.addNode('791','Site Manager',ssUrlPrefix + 'SiteManager/index.htm','MPDisableStart==\x3c\x21-- mp_trans_add\x3d\"ES\" --\x3e','ShowBreadcrumb==true','ShowLHN==false','contributorOnly==TRUE');
}
g_navNode_9=g_navNode_Root.addNode('100056','Dunkin Brands',ssUrlPrefix + 'dunkin-brands/index.htm','HideInTopnav==true','ImageType==1','NumColumns==3','PageTitle==Dunkin Brands Franchise Site ','ShowBreadcrumb==false','ShowLHN==false');
g_navNode_9_0=g_navNode_9.addNode('100064','Franchisee Finance',ssUrlPrefix + 'dunkin-brands/franchisee-finance/index.htm','ImageType==1','NumColumns==3','PageTitle==Dunkin\\x27 Dounts and Baskin Robbins Franchise Finance by CIT ','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_9_0_0=g_navNode_9_0.addNode('100059','CIT/ Dunkin Alliance ',ssUrlPrefix + 'dunkin-brands/franchisee-finance/cit-alliance/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT - The Preferred Lender for Dunkin\u2019 Donuts and Baskin Robbins Brand Operators','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_9_0_0_0=g_navNode_9_0_0.addNode('100062','Behind the Business',ssUrlPrefix + 'dunkin-brands/franchisee-finance/cit-alliance/behind-the-business/index.htm','BioColor==\x23c02000','ImageType==2','NumColumns==2','PageTitle==CIT\x3a Behind the Business - Dunkin Brands','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_9_0_0_1=g_navNode_9_0_0.addNode('100063','Case Study',ssUrlPrefix + 'dunkin-brands/franchisee-finance/cit-alliance/case-study/index.htm','ImageType==2','NumColumns==1','PageTitle==CIT - Dunkin Brands Case Study ','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_9_0_1=g_navNode_9_0.addNode('100060','Franchise Documents',ssUrlPrefix + 'dunkin-brands/franchisee-finance/franchise-documents/index.htm','ImageType==2','NumColumns==1','PageTitle==Dunkin Donuts and Baskin Robbins Franchise Documents - CIT','ShowBreadcrumb==true','ShowLHN==true');
g_navNode_9_0_2=g_navNode_9_0.addNode('100061','Contact Us ',ssUrlPrefix + 'dunkin-brands/franchisee-finance/contact-us/index.htm','ImageType==2','NumColumns==1','PageTitle==Contact Us for Dunkin\\x27 Brands and Baskin Robbins Franchise Financing ','ShowBreadcrumb==true','ShowLHN==true');
