/////////////////////////////////////////////////////////////////////////////
// Function : NavNode (constructor)
// Comments :
/////////////////////////////////////////////////////////////////////////////
function NavNode(id, label, href, parent)
{
	this.m_parent = null;
	this.m_level = 0;

	if (parent)
	{
		this.m_parent = parent;
		this.m_level = parent.m_level+1;
	}

	this.m_id = id;

	// assume that m_label will most often be used directly as HTML
	this.m_rawlabel = label;

	label = label.replace(/&/g, '&amp;');
	label = label.replace(/</g, '&lt;');
	label = label.replace(/>/g, '&gt;');
	label = label.replace(/"/g, '&quot;');

	this.m_label = label;

	this.m_href = href;
	this.m_subNodes = new Array();

	var argValues = NavNode.arguments;
	var argCount = NavNode.arguments.length;

	for (i = 4 ; i < argCount ; i++)
	{
		var eqPos = argValues[i].indexOf("==");
		var attrName = argValues[i].substring(0,eqPos);
		var attrValue = argValues[i].substring(eqPos+2);

		eval("this.cp_" + attrName + " = '" + attrValue + "';");
	}

	NavNode.prototype.addNode = addNode;
	NavNode.prototype.isSelected = isSelected;
}

/////////////////////////////////////////////////////////////////////////////
// Function : addNode
// Comments :
/////////////////////////////////////////////////////////////////////////////
function addNode(id, label, href)
{
	var newIndex = this.m_subNodes.length;
	var newNode = new NavNode(id, label, href, this);

	var argValues = addNode.arguments;
	var argCount = addNode.arguments.length;

	for (i = 3 ; i < argCount ; i++)
	{
		var eqPos = argValues[i].indexOf("==");
		var attrName = argValues[i].substring(0,eqPos);
		var attrValue = argValues[i].substring(eqPos+2);

		eval("newNode.cp_" + attrName + " = '" + attrValue + "';");
	}

	this.m_subNodes[newIndex] = newNode;
	return newNode;
}

/////////////////////////////////////////////////////////////////////////////
// Function : isSelected
// Comments :
/////////////////////////////////////////////////////////////////////////////
function isSelected()
{
    var pos = window.location.href.lastIndexOf("/");
    var docname = window.location.href.substring(pos+1, window.location.href.length);

    pos = this.m_href.lastIndexOf("/");
    var myname = this.m_href.substring(pos+1, this.m_href.length);

    if (docname == myname)
		return true;
	else
		return false;
}

/////////////////////////////////////////////////////////////////////////////
// Function : customSectionPropertyExists
// Comments :
/////////////////////////////////////////////////////////////////////////////
function customSectionPropertyExists(csp)
{
	return (typeof csp != _U && csp != null);
}

/////////////////////////////////////////////////////////////////////////////
// Function : getCustomSectionProperty
// Comments :
/////////////////////////////////////////////////////////////////////////////
function getCustomSectionProperty(csp)
{
	if (customSectionPropertyExists(csp))
	{
		return csp;
	}
	else
	{
		return "";
	}
}

/////////////////////////////////////////////////////////////////////////////

var g_navNode_Root = new NavNode('1','Swedbank',ssUrlPrefix + 'index.htm',null,'BankNumber==8999','Description==Swedbank, the leading bank in Sweden, Estonia, Latvia and Lithuania.','Keywords==Swedbank, Swedbank Group, start page, home, bank, Sweden','ShareThis==true','Site==true','Sitester==false');
g_navNode_0=g_navNode_Root.addNode('2','About Swedbank',ssUrlPrefix + 'about-swedbank/index.htm','Description==A short description of Swedbank Group','Keywords==Swedbank, Hansabank, financial services, retail bank, About Swedbank','PageTitle==About - Swedbank','Sitester==false');
g_navNode_0_0=g_navNode_0.addNode('8','Purpose, values and vision',ssUrlPrefix + 'about-swedbank/purpose-values-and-vision/index.htm','PageTitle==Purpose, values and vision - Swedbank');
g_navNode_0_1=g_navNode_0.addNode('9','Strategy',ssUrlPrefix + 'about-swedbank/strategy/index.htm','PageTitle==Strategy - Swedbank');
g_navNode_0_2=g_navNode_0.addNode('10','Management and organisation',ssUrlPrefix + 'about-swedbank/management-and-organisation/index.htm','Description==Chart of the Swedbank Organisation','Keywords==Swedbank, chart, Management Organisation chart, ','PageTitle==Management and organisation - Swedbank');
g_navNode_0_2_0=g_navNode_0_2.addNode('19','Group Executive Committee',ssUrlPrefix + 'about-swedbank/management-and-organisation/group-executive-committee/index.htm','Description==Photos and CV of Swedbank\\x27s Group Executive Committee','Keywords==Swedbank, Photos and CV, Group Executive Committee, Head of Group Business Support, Head of Retail, Head of Russia \x26 Ukraine, President and CEO, Head of Large Corporates \x26 Institutions, Head of Large Corporates, Head of Corporate Affairs, Head of Group HR, Head of Baltic Banking, Head of Group Legal and Company secretary, Group Chief Risk Officer, CRO, CFO, ');
g_navNode_0_2_1=g_navNode_0_2.addNode('20','Board of Directors',ssUrlPrefix + 'about-swedbank/management-and-organisation/board-of-directors/index.htm','Description==Board of Directors','Keywords==Swedbank, Board of directors, Photos and CV, management, organisation');
g_navNode_0_3=g_navNode_0.addNode('11','Corporate governance',ssUrlPrefix + 'about-swedbank/corporate-governance/index.htm','Description==corporate governance, ','Keywords==Corporate governance, division of responsibility','PageTitle==Corporate governance and division of responsibility - Swedbank');
g_navNode_0_3_1=g_navNode_0_3.addNode('22','Annual General Meeting',ssUrlPrefix + 'about-swedbank/corporate-governance/annual-general-meeting/index.htm','Description==Annual General Meeting, registration procedure, voting rights','Keywords==Annual General Meeting','PageTitle==Annual General Meeting - Swedbank');
g_navNode_0_3_1_0=g_navNode_0_3_1.addNode('3470','AGM 2012',ssUrlPrefix + 'about-swedbank/corporate-governance/annual-general-meeting/agm-2012/index.htm','Description==Information about the Annual general meeting 2012, webcast, speeches by Chairman and CEO, proposals and motions','Keywords==Annual general meeting, shareholder information, Swedbank, Board','PageTitle==Annual General Meeting 2012 - Swedbank');
g_navNode_0_3_1_1=g_navNode_0_3_1.addNode('3481','Previous AGMs',ssUrlPrefix + 'about-swedbank/corporate-governance/annual-general-meeting/previous-agms/index.htm','Description==Shareholder information on previous AGMs of Swedbank','Keywords==Previous AGMs, Swedbank');
g_navNode_0_3_2=g_navNode_0_3.addNode('24','The Board of Directors',ssUrlPrefix + 'about-swedbank/corporate-governance/the-board-of-directors/index.htm');
g_navNode_0_3_2_0=g_navNode_0_3_2.addNode('43','Photos and CV',ssUrlPrefix + 'about-swedbank/corporate-governance/the-board-of-directors/photos-and-cv/index.htm','Description==Photos and CV of the Board of Directors','Keywords==Swedbank, Photos and CV, Board of Directors, Corporate governance ');
g_navNode_0_3_2_1=g_navNode_0_3_2.addNode('44','The Board\'s committees',ssUrlPrefix + 'about-swedbank/corporate-governance/the-board-of-directors/the-boards-committees/index.htm');
g_navNode_0_3_2_2=g_navNode_0_3_2.addNode('45','Director independence',ssUrlPrefix + 'about-swedbank/corporate-governance/the-board-of-directors/director-independence/index.htm');
g_navNode_0_3_2_3=g_navNode_0_3_2.addNode('46','Board work',ssUrlPrefix + 'about-swedbank/corporate-governance/the-board-of-directors/board-work/index.htm');
g_navNode_0_3_3=g_navNode_0_3.addNode('42','Nomination Committee',ssUrlPrefix + 'about-swedbank/corporate-governance/nomination-committee/index.htm','Description==Infrmation about the work and principles of the nomination committee','Keywords==Nomination committee, proposals, princiiples for appointing, duties','PageTitle==Nomination Committee - Swedbank');
g_navNode_0_3_4=g_navNode_0_3.addNode('23','CEO and Group Executive Committee',ssUrlPrefix + 'about-swedbank/corporate-governance/ceo-and-group-executive-management/index.htm','Description==Information about the Group Executive committee which is led by the CEO','Keywords==CEO, Group Executive Committee','PageTitle==The CEO and Group Executive Committee');
g_navNode_0_3_5=g_navNode_0_3.addNode('26','Remuneration',ssUrlPrefix + 'about-swedbank/corporate-governance/remuneration/index.htm','Description==Information about the remuneration and remuneration policy in Swedbank','Keywords==Remuneration, remuneration policy','PageTitle==Remuneration - Swedbank');
g_navNode_0_3_6=g_navNode_0_3.addNode('25','Organisation',ssUrlPrefix + 'about-swedbank/corporate-governance/organisation/index.htm','Description==Chart of the Swedbank Organisation','Keywords==Swedbank, Organisation chart, Board of directors, CEO and President','PageTitle==The Swedbank Organisation - Swedbank');
g_navNode_0_3_6_0=g_navNode_0_3_6.addNode('47','Legal structure',ssUrlPrefix + 'about-swedbank/corporate-governance/organisation/legal-structure/index.htm','Description==Legal structure','Keywords==Legal structure','PageTitle==Legal structure - Swedbank');
g_navNode_0_3_7=g_navNode_0_3.addNode('27','Insider trading',ssUrlPrefix + 'about-swedbank/corporate-governance/insider-trading/index.htm','Description==People whose position gives them insider status in Swedbank, are to report own and kindred\\x27s shareholding and change of shareholding ','Keywords==Insider register, insiders, insider registration','PageTitle==Insider register - Swedbank');
g_navNode_0_3_8=g_navNode_0_3.addNode('29','Internal control and auditing',ssUrlPrefix + 'about-swedbank/corporate-governance/internal-control-and-auditing/index.htm','Keywords==Internal control and auditing','PageTitle==Internal control and auditing - Swedbank');
g_navNode_0_3_8_0=g_navNode_0_3_8.addNode('54','Compliance',ssUrlPrefix + 'about-swedbank/corporate-governance/internal-control-and-auditing/compliance/index.htm','Description==Compliance','Keywords==Compliance','PageTitle==Compliance - Swedbank');
g_navNode_0_3_8_1=g_navNode_0_3_8.addNode('55','Whistle Blower Procedure',ssUrlPrefix + 'about-swedbank/corporate-governance/internal-control-and-auditing/whistle-blower-procedure/index.htm','Description==Whistle Blower Procedure','Keywords==Whistle Blower Procedure','PageTitle==Whistle Blower Procedure - Swedbank');
g_navNode_0_3_9=g_navNode_0_3.addNode('30','Code of conduct',ssUrlPrefix + 'about-swedbank/corporate-governance/code-of-conduct/index.htm','Description==Code of conduct including guidelines that our employees must adhere to as well as requirements that they have as regards personal judgment and responsibility.','Keywords==Code of conduct, policies, guidelines, instructions','PageTitle==Code of conduct - Swedbank');
g_navNode_0_4=g_navNode_0.addNode('12','Group presence',ssUrlPrefix + 'about-swedbank/group-presence/index.htm','Description==Swedbank Group Presence','Keywords==Swedbank, Group Presence, International branches, Home markets, International Subsidiaries, Representative offices, Sweden, Finland, Latvia, Estonia, Lithuania, Luxembourg, Ukraine, Russia, Norway, Denmark, USA, China, Spain, Japan, ','PageTitle==Group presence - Swedbank');
g_navNode_0_4_0=g_navNode_0_4.addNode('65','Retail',ssUrlPrefix + 'about-swedbank/group-presence/retail/index.htm','PageTitle==Group Presence - Retail - Swedbank');
g_navNode_0_4_0_0=g_navNode_0_4_0.addNode('233','Management',ssUrlPrefix + 'about-swedbank/group-presence/retail/management/index.htm','PageTitle==Group Presence - Management - Swedbank');
g_navNode_0_4_0_1=g_navNode_0_4_0.addNode('234','Organisation',ssUrlPrefix + 'about-swedbank/group-presence/retail/organisation/index.htm','PageTitle==Group Presence - Organisation - Swedbank');
g_navNode_0_4_1=g_navNode_0_4.addNode('66','Baltic Banking',ssUrlPrefix + 'about-swedbank/group-presence/baltic-banking/index.htm','PageTitle==Group Presence - Baltic Banking - Swedbank');
g_navNode_0_4_1_0=g_navNode_0_4_1.addNode('235','Management',ssUrlPrefix + 'about-swedbank/group-presence/baltic-banking/management/index.htm');
g_navNode_0_4_1_1=g_navNode_0_4_1.addNode('236','Organisation',ssUrlPrefix + 'about-swedbank/group-presence/baltic-banking/organisation/index.htm');
g_navNode_0_4_2=g_navNode_0_4.addNode('67','Russia \x26 Ukraine',ssUrlPrefix + 'about-swedbank/group-presence/russia-ukraine/index.htm','PageTitle==Group Presence - Russia \x26 Ukraine - Swedbank','contributorOnly==false');
g_navNode_0_4_3=g_navNode_0_4.addNode('68','Large Corporates \x26 Institutions',ssUrlPrefix + 'about-swedbank/group-presence/large-corporates-institutions/index.htm','PageTitle==Group Presence - Large Corporates \x26 Institutions - Swedbank');
g_navNode_0_4_4=g_navNode_0_4.addNode('69','Asset Management ',ssUrlPrefix + 'about-swedbank/group-presence/asset-management/index.htm','PageTitle==Group Presence - Asset Management - Swedbank');
g_navNode_0_4_5=g_navNode_0_4.addNode('1108','Ektornet',ssUrlPrefix + 'about-swedbank/group-presence/ektornet/index.htm','Description==A presentation of the business area Ektornet.','Keywords==Ektornet, Swedbank, real estate, repossessed properties','PageTitle==Group Presence - Ektornet - Swedbank','ShareThis==true');
g_navNode_0_4_6=g_navNode_0_4.addNode('70','Group Functions',ssUrlPrefix + 'about-swedbank/group-presence/group-functions/index.htm','Description==Group Business Support\u2019 role is to capitalize on the economies of scale that arise when several units of the Group utilize similar services.','Keywords==GBS,Group,staff,IT','PageTitle==Group Functions - Swedbank');
g_navNode_0_4_7=g_navNode_0_4.addNode('338','Swedbank\u2019s Home Markets',ssUrlPrefix + 'about-swedbank/group-presence/swedbanks-home-markets/index.htm','PageTitle==Group Presence - Swedbank\\x27s Home Markets - Swedbank','contributorOnly==false');
g_navNode_0_5=g_navNode_0.addNode('13','Quick facts',ssUrlPrefix + 'about-swedbank/quick-facts/index.htm','PageTitle==Group Presence - Quick facts - Swedbank ');
g_navNode_0_6=g_navNode_0.addNode('14','Our history',ssUrlPrefix + 'about-swedbank/our-history/index.htm','PageTitle==Our history - Swedbank');
g_navNode_0_6_0=g_navNode_0_6.addNode('368','Timeline',ssUrlPrefix + 'about-swedbank/our-history/timeline/index.htm','Description==There are few companies that have an equally long history as Swedbank. For nearly 200 years we have assisted our customers to save and borrow at a better future. The world has changed and we with it. But the need for a prudent bank is at least as much today as in the early 1800s. Join us for time travel by clicking on one of the time epochs. Click on a specific year to read about events in Swedbank\\x27s history, or click the play button','Keywords==Timeline, banking, loan, company, Swedbank, save','contributorOnly==false');
g_navNode_0_6_1=g_navNode_0_6.addNode('72','Our history in brief',ssUrlPrefix + 'about-swedbank/our-history/our-history-in-brief/index.htm');
g_navNode_0_6_2=g_navNode_0_6.addNode('73','Hansabank history',ssUrlPrefix + 'about-swedbank/our-history/hansabank-history/index.htm');
g_navNode_0_6_3=g_navNode_0_6.addNode('74','Swedbank and the savings banks',ssUrlPrefix + 'about-swedbank/our-history/swedbank-and-the-savings-banks/index.htm');
g_navNode_0_6_4=g_navNode_0_6.addNode('76','Brand History',ssUrlPrefix + 'about-swedbank/our-history/brand-history/index.htm');
g_navNode_0_8=g_navNode_0.addNode('16','Awards and rankings',ssUrlPrefix + 'about-swedbank/awards-and-rankings/index.htm','PageTitle==Awards and rankings - Swedbank');
g_navNode_0_8_0=g_navNode_0_8.addNode('8421','2010',ssUrlPrefix + 'about-swedbank/awards-and-rankings/2010/index.htm');
g_navNode_0_8_1=g_navNode_0_8.addNode('385','2009',ssUrlPrefix + 'about-swedbank/awards-and-rankings/2009/index.htm','Keywords==awards, ranking, best, prize','contributorOnly==false');
g_navNode_0_8_2=g_navNode_0_8.addNode('77','2008',ssUrlPrefix + 'about-swedbank/awards-and-rankings/2008/index.htm');
g_navNode_0_8_3=g_navNode_0_8.addNode('78','2007',ssUrlPrefix + 'about-swedbank/awards-and-rankings/2007/index.htm');
g_navNode_0_8_4=g_navNode_0_8.addNode('79','2006',ssUrlPrefix + 'about-swedbank/awards-and-rankings/2006/index.htm');
g_navNode_0_8_5=g_navNode_0_8.addNode('80','2005',ssUrlPrefix + 'about-swedbank/awards-and-rankings/2005/index.htm');
g_navNode_0_9=g_navNode_0.addNode('swedbankcom-contact','Contact us',ssUrlPrefix + 'about-swedbank/contact-us/index.htm','PageTitle==Contact us - Swedbank');
g_navNode_1=g_navNode_Root.addNode('7126','Newsroom',ssUrlPrefix + 'newsroom/index.htm','PageTitle==Newsroom - Swedbank');
g_navNode_2=g_navNode_Root.addNode('4','Investor Relations',ssUrlPrefix + 'investor-relations/index.htm','Description==Financial information and publications as well as information about the Swedbank shares, shareholders and financial calendar. Also includes information for debt investors.','Keywords==investor relations, share, financials, financial reports, presentations, order, subscribe, download archive, interim reports, calender','PageTitle==Investor Relations - Swedbank','Sitester==false');
g_navNode_2_0=g_navNode_2.addNode('94','Financial information and publications',ssUrlPrefix + 'investor-relations/financial-information-and-publications/index.htm','Description==This page contains financial information, financial reports and publications such as interim reports, year-end reports, Fact book, CEO presentations, webcast and telecast from current year','Keywords==Financial information, financial publications, financial reports, webcast, telecast from current year','PageTitle==Financial reports - Swedbank');
g_navNode_2_0_0=g_navNode_2_0.addNode('1373','Financial reports archive',ssUrlPrefix + 'investor-relations/financial-information-and-publications/financial-reports-archive/index.htm','Description==This page contains financial information and publications such as interim reports, year-end reports, Fact book, CEO presentations, webcast and telecast from earlier years','Keywords==Financial information, financial publications, webcast, telecast from earlier years','PageTitle==Financial reports archive - Swedbank');
g_navNode_2_0_1=g_navNode_2_0.addNode('118','Annual reports',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-reports/index.htm','Description==Swedbank Annual Reports, pdf and html and Swedbank mortage annual reports in pdf','Keywords==Swedbank Annual Reports, pdf and html and Swedbank mortage annual reports in pdf','PageTitle==Swedbank - Annual reports');
g_navNode_2_0_2=g_navNode_2_0.addNode('1688','Risk report',ssUrlPrefix + 'investor-relations/financial-information-and-publications/risk-report/index.htm','Description==Swedbank Risk Reports from 2007 covering risk and capital adequcay according to the rules \x28in pdf\x29','Keywords==Swedbank Risk Reports from 2007 in pdf','PageTitle==Swedbank Risk reports');
g_navNode_2_0_5=g_navNode_2_0.addNode('120','Swedbank Baltics',ssUrlPrefix + 'investor-relations/financial-information-and-publications/baltic-banking/index.htm','Description==Swedbank Baltic\\x27s annual reports and interim reports in pdf','Keywords==Swedbank Baltic\\x27s annual reports, interim reports, pdf','PageTitle==Financial reports from Swedbank Baltics');
g_navNode_2_0_6=g_navNode_2_0.addNode('121','Sustainability reports',ssUrlPrefix + 'investor-relations/financial-information-and-publications/sustainability-reports/index.htm','Description==Sustainability reports from 2001 and onwards, from 2003 part of the Swedbank Annual Report','Keywords==Sustainability reports from 2001 and onwards, from 2003 part of the Swedbank Annual Report','PageTitle==Swedbank Sustainability Reports');
g_navNode_2_0_7=g_navNode_2_0.addNode('2113','Download Archive',ssUrlPrefix + 'investor-relations/financial-information-and-publications/download-archive/index.htm','Description==Reports available for download','Keywords==Financial Reports,Annual Report,pdf,reports,fact book,Interim Report','PageTitle==Download Archive - Swedbank');
g_navNode_2_0_8=g_navNode_2_0.addNode('99','Order and subscribe',ssUrlPrefix + 'investor-relations/financial-information-and-publications/order-and-subscribe/index.htm','Description==You may subscribe to Swedbank\\x27s interim reports and/or press releases to your e-mail. You may also order Swedbank\\x27s annual reports in printed format.','Keywords==Order, subscribe interim reports, press releases, Swedbank','PageTitle==Swedbank Order and Subscribe');
g_navNode_2_0_9=g_navNode_2_0.addNode('122','Presentations',ssUrlPrefix + 'investor-relations/financial-information-and-publications/presentations/index.htm','Description==In this section you will find presentations made on different occasions in connection with roadshows, conferences, seminars and capital market days','Keywords==Presentations, roadshows, conferences, seminars, capital market days','PageTitle==Swedbank Presentations');
g_navNode_2_0_10=g_navNode_2_0.addNode('352','Prospectus',ssUrlPrefix + 'investor-relations/financial-information-and-publications/prospectus/index.htm','Description==Prospectus ','Keywords==Prospectus','PageTitle==Swedbank Prospectus','contributorOnly==false');
g_navNode_2_0_11=g_navNode_2_0.addNode('116','Key ratios',ssUrlPrefix + 'investor-relations/financial-information-and-publications/key-ratios/index.htm','Description==Key ratios for the Swedbank Group specified on profit, capital and credit quality','HeadCode==true','Keywords==Key ratios, Swedbank Group, profit, capital, credit quality','PageTitle==Swedbank Key Ratios');
g_navNode_2_0_12=g_navNode_2_0.addNode('7695','Financial targets',ssUrlPrefix + 'investor-relations/financial-information-and-publications/financial-targets/index.htm','Description==In early 2011 Swedbank introduced aprofitability target and a capitalisation target as well as amended the bank\\x27s dividend policy.','HeadCode==true','Keywords==Financial targets, return on equity, capitalisation, core tier 1 capital ratio, dividend','PageTitle==Financial targets - Swedbank','contributorOnly==false');
g_navNode_2_0_13=g_navNode_2_0.addNode('10452','Investments and divestments',ssUrlPrefix + 'investor-relations/financial-information-and-publications/investments-and-divestments/index.htm','Description==Swedbank\\x27s investments and divestments since 2001.','Keywords==Investments and divestments','PageTitle==Investments and divestments - Swedbank','contributorOnly==false');
g_navNode_2_0_14=g_navNode_2_0.addNode('111','Consensus estimates SME',ssUrlPrefix + 'investor-relations/financial-information-and-publications/consensus-estimates-sme/index.htm','Description==The earnings estimates are delivered by SME Direkt and are based on estimates made by analysts covering Swedbank','Keywords==Earning/consensus estimates, SME, analysts covering Swedbank','PageTitle==Swedbank Consensus estimates SME');
g_navNode_2_0_15=g_navNode_2_0.addNode('130','Definitions',ssUrlPrefix + 'investor-relations/financial-information-and-publications/definitions/index.htm','Description==Definitions of some of the words used on Swedbank webpage under the Investor Relations section','Keywords==Definitions','PageTitle==Swedbank Definitions');
g_navNode_2_0_16=g_navNode_2_0.addNode('117','Market shares',ssUrlPrefix + 'investor-relations/financial-information-and-publications/market-shares/index.htm','Description==Market shares on Swedbank\\x27s home markets','Keywords==Market shares, Swedbank\\x27s home markets','PageTitle==Swedbank Market Shares');
g_navNode_2_0_17=g_navNode_2_0.addNode('115','Market information',ssUrlPrefix + 'investor-relations/financial-information-and-publications/market-information/index.htm');
g_navNode_2_0_19=g_navNode_2_0.addNode('4330','Annual Report 2010',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/index.htm','HeadCode==true','Site==true','contributorOnly==false');
g_navNode_2_0_19_0=g_navNode_2_0_19.addNode('5314','Quick facts',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/quick-facts/index.htm');
g_navNode_2_0_19_0_0=g_navNode_2_0_19_0.addNode('5337','Important events',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/quick-facts/important-events/index.htm');
g_navNode_2_0_19_0_1=g_navNode_2_0_19_0.addNode('5338','Swedbank in brief',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/quick-facts/swedbank-in-brief/index.htm');
g_navNode_2_0_19_0_1_0=g_navNode_2_0_19_0_1.addNode('7276','Retail',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/quick-facts/swedbank-in-brief/retail/index.htm');
g_navNode_2_0_19_0_1_1=g_navNode_2_0_19_0_1.addNode('7277','Large Corporates \x26 Institutions',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/quick-facts/swedbank-in-brief/large-corporates-institutions/index.htm');
g_navNode_2_0_19_0_1_2=g_navNode_2_0_19_0_1.addNode('7278','Baltic Banking',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/quick-facts/swedbank-in-brief/baltic-banking/index.htm');
g_navNode_2_0_19_0_1_3=g_navNode_2_0_19_0_1.addNode('7279','Asset Management',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/quick-facts/swedbank-in-brief/asset-management/index.htm');
g_navNode_2_0_19_0_1_4=g_navNode_2_0_19_0_1.addNode('7280','Russia \x26 Ukraine',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/quick-facts/swedbank-in-brief/russia-ukraine/index.htm');
g_navNode_2_0_19_0_1_5=g_navNode_2_0_19_0_1.addNode('7281','Ektornet',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/quick-facts/swedbank-in-brief/ektornet/index.htm');
g_navNode_2_0_19_0_2=g_navNode_2_0_19_0.addNode('5339','Five-year summary',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/quick-facts/five-year-summary/index.htm');
g_navNode_2_0_19_0_3=g_navNode_2_0_19_0.addNode('5340','Market shares',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/quick-facts/market-shares/index.htm');
g_navNode_2_0_19_0_3_0=g_navNode_2_0_19_0_3.addNode('7303','Charts',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/quick-facts/market-shares/charts/index.htm');
g_navNode_2_0_19_1=g_navNode_2_0_19.addNode('5329','Swedbank 2010',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/swedbank-2010/index.htm');
g_navNode_2_0_19_1_0=g_navNode_2_0_19_1.addNode('5330','President\u2019s statement',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/swedbank-2010/president\u2019s-statement/index.htm');
g_navNode_2_0_19_1_1=g_navNode_2_0_19_1.addNode('5332','Financial targets',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/swedbank-2010/financial-targets/index.htm');
g_navNode_2_0_19_1_2=g_navNode_2_0_19_1.addNode('5331','Fundamental values',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/swedbank-2010/fundamental-values/index.htm');
g_navNode_2_0_19_1_3=g_navNode_2_0_19_1.addNode('5333','Strategy',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/swedbank-2010/strategy/index.htm');
g_navNode_2_0_19_1_4=g_navNode_2_0_19_1.addNode('5356','Follow-up of priorities 2010',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/swedbank-2010/follow-up-of-priorities-2010/index.htm');
g_navNode_2_0_19_1_5=g_navNode_2_0_19_1.addNode('5334','Priorities 2011',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/swedbank-2010/priorities-2011/index.htm');
g_navNode_2_0_19_1_6=g_navNode_2_0_19_1.addNode('7192','Our brand',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/swedbank-2010/our-brand/index.htm');
g_navNode_2_0_19_1_7=g_navNode_2_0_19_1.addNode('5351','How we govern the bank',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/swedbank-2010/how-we-govern-the-bank/index.htm');
g_navNode_2_0_19_1_8=g_navNode_2_0_19_1.addNode('7384','Market overview',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/swedbank-2010/market-overview/index.htm');
g_navNode_2_0_19_1_9=g_navNode_2_0_19_1.addNode('5355','Financial analysis',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/swedbank-2010/financial-analysis/index.htm','BODreport==true');
g_navNode_2_0_19_1_10=g_navNode_2_0_19_1.addNode('5341','Business areas',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/swedbank-2010/business-areas/index.htm','BODreport==true');
g_navNode_2_0_19_1_10_0=g_navNode_2_0_19_1_10.addNode('5342','Retail',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/swedbank-2010/business-areas/retail/index.htm','BODreport==true');
g_navNode_2_0_19_1_10_1=g_navNode_2_0_19_1_10.addNode('5343','Large Corporates \x26 Institutions',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/swedbank-2010/business-areas/large-corporates--institutions/index.htm','BODreport==true');
g_navNode_2_0_19_1_10_2=g_navNode_2_0_19_1_10.addNode('5345','Baltic Banking',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/swedbank-2010/business-areas/baltic-banking/index.htm','BODreport==true');
g_navNode_2_0_19_1_10_3=g_navNode_2_0_19_1_10.addNode('5346','Asset Management',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/swedbank-2010/business-areas/asset-management/index.htm','BODreport==true');
g_navNode_2_0_19_1_10_4=g_navNode_2_0_19_1_10.addNode('5347','Russia and Ukraine',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/swedbank-2010/business-areas/russia-and-ukraine/index.htm','BODreport==true');
g_navNode_2_0_19_1_10_5=g_navNode_2_0_19_1_10.addNode('5348','Ektornet',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/swedbank-2010/business-areas/ektornet/index.htm','BODreport==true');
g_navNode_2_0_19_1_11=g_navNode_2_0_19_1.addNode('5349','Group functions',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/swedbank-2010/group-functions/index.htm','BODreport==true');
g_navNode_2_0_19_1_12=g_navNode_2_0_19_1.addNode('5335','Swedbank\'s sustainability work',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/swedbank-2010/swedbanks-sustainability-work/index.htm','BODreport==true');
g_navNode_2_0_19_1_13=g_navNode_2_0_19_1.addNode('5350','Our employees',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/swedbank-2010/our-employees/index.htm','BODreport==true');
g_navNode_2_0_19_1_14=g_navNode_2_0_19_1.addNode('7214','Performance-based remuneration',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/swedbank-2010/performance-based-remuneration/index.htm','BODreport==true');
g_navNode_2_0_19_1_15=g_navNode_2_0_19_1.addNode('7195','Group Executive Committee',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/swedbank-2010/ggroup-executive-committee/index.htm');
g_navNode_2_0_19_2=g_navNode_2_0_19.addNode('5410','Risk management',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/risk-management/index.htm','BODreport==true');
g_navNode_2_0_19_2_0=g_navNode_2_0_19_2.addNode('7282','Swedbank\'s three lines of defence',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/risk-management/swedbanks-three-lines-of-defence/index.htm','BODreport==true');
g_navNode_2_0_19_2_1=g_navNode_2_0_19_2.addNode('7283','The bank\'s risk assumption',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/risk-management/the-banks-risk-assumption/index.htm','BODreport==true');
g_navNode_2_0_19_2_2=g_navNode_2_0_19_2.addNode('7284','Development 2010',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/risk-management/development-2010/index.htm','BODreport==true');
g_navNode_2_0_19_2_2_0=g_navNode_2_0_19_2_2.addNode('7296','Credit risk',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/risk-management/development-2010/credit-risk/index.htm');
g_navNode_2_0_19_2_2_1=g_navNode_2_0_19_2_2.addNode('7297','Market risk',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/risk-management/development-2010/market-risk/index.htm');
g_navNode_2_0_19_2_2_2=g_navNode_2_0_19_2_2.addNode('7298','Liquidity risk',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/risk-management/development-2010/liquidity-risk/index.htm');
g_navNode_2_0_19_2_2_3=g_navNode_2_0_19_2_2.addNode('7299','Operational risk',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/risk-management/development-2010/operational-risk/index.htm');
g_navNode_2_0_19_2_3=g_navNode_2_0_19_2.addNode('7285','Capital planning',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/risk-management/capital-planning/index.htm','BODreport==true');
g_navNode_2_0_19_3=g_navNode_2_0_19.addNode('5325','Accounts',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/accounts/index.htm');
g_navNode_2_0_19_3_0=g_navNode_2_0_19_3.addNode('7286','Group',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/accounts/group/index.htm');
g_navNode_2_0_19_3_1=g_navNode_2_0_19_3.addNode('7287','Parent company',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/accounts/parent-company/index.htm','BODreport==false','HeadCode==true');
g_navNode_2_0_19_3_2=g_navNode_2_0_19_3.addNode('5326','Signatures of the Board of Directors and the President',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/accounts/signatures-of-the-board-of-directors-and-the-president/index.htm');
g_navNode_2_0_19_3_3=g_navNode_2_0_19_3.addNode('5328','Auditors\' report',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/accounts/auditors-report/index.htm');
g_navNode_2_0_19_4=g_navNode_2_0_19.addNode('5324','Corporate governance report',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/corporate-governance-report/index.htm');
g_navNode_2_0_19_4_0=g_navNode_2_0_19_4.addNode('5385','Annual General Meeting',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/corporate-governance-report/annual-general-meeting/index.htm');
g_navNode_2_0_19_4_1=g_navNode_2_0_19_4.addNode('5386','Nomination Committee',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/corporate-governance-report/nomination-committee/index.htm');
g_navNode_2_0_19_4_2=g_navNode_2_0_19_4.addNode('5387','Board of Directors',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/corporate-governance-report/board-of-directors/index.htm');
g_navNode_2_0_19_4_3=g_navNode_2_0_19_4.addNode('5388','Risk and Capital Committee',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/corporate-governance-report/risk-and-capital-committee/index.htm');
g_navNode_2_0_19_4_4=g_navNode_2_0_19_4.addNode('5389','Compensation Committee',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/corporate-governance-report/compensation-committee/index.htm');
g_navNode_2_0_19_4_5=g_navNode_2_0_19_4.addNode('5390','Audit and Compliance Committee',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/corporate-governance-report/audit-and-compliance-committee/index.htm');
g_navNode_2_0_19_4_6=g_navNode_2_0_19_4.addNode('5391','Internal Audit',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/corporate-governance-report/internal-audit/index.htm');
g_navNode_2_0_19_4_7=g_navNode_2_0_19_4.addNode('5392','Auditors',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/corporate-governance-report/auditors/index.htm');
g_navNode_2_0_19_4_8=g_navNode_2_0_19_4.addNode('5393','CEO and Group Executive Committee',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/corporate-governance-report/ceo-and-group-executive-committee/index.htm');
g_navNode_2_0_19_4_9=g_navNode_2_0_19_4.addNode('5394','Business areas',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/corporate-governance-report/business-areas/index.htm');
g_navNode_2_0_19_4_10=g_navNode_2_0_19_4.addNode('5395','Group functions',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/corporate-governance-report/group-functions/index.htm');
g_navNode_2_0_19_4_11=g_navNode_2_0_19_4.addNode('5396','The Board of Directors\u2019 report on internal control over financial reporting',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/corporate-governance-report/the-board-of-directors\u2019-report-on-internal-control-over-financial-reporting/index.htm');
g_navNode_2_0_19_4_11_0=g_navNode_2_0_19_4_11.addNode('5397','Regulatory framework',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/corporate-governance-report/the-board-of-directors\u2019-report-on-internal-control-over-financial-reporting/regulatory-framework/index.htm');
g_navNode_2_0_19_4_11_1=g_navNode_2_0_19_4_11.addNode('5398','Control environment',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/corporate-governance-report/the-board-of-directors\u2019-report-on-internal-control-over-financial-reporting/control-environment/index.htm');
g_navNode_2_0_19_4_11_2=g_navNode_2_0_19_4_11.addNode('5399','Risk assessment',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/corporate-governance-report/the-board-of-directors\u2019-report-on-internal-control-over-financial-reporting/risk-assessment/index.htm');
g_navNode_2_0_19_4_11_3=g_navNode_2_0_19_4_11.addNode('5400','Control activities',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/corporate-governance-report/the-board-of-directors\u2019-report-on-internal-control-over-financial-reporting/control-activities/index.htm');
g_navNode_2_0_19_4_11_4=g_navNode_2_0_19_4_11.addNode('5401','Information and communication',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/corporate-governance-report/the-board-of-directors\u2019-report-on-internal-control-over-financial-reporting/information-and-communication/index.htm');
g_navNode_2_0_19_4_11_5=g_navNode_2_0_19_4_11.addNode('5402','Monitoring',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/corporate-governance-report/the-board-of-directors\u2019-report-on-internal-control-over-financial-reporting/monitoring/index.htm');
g_navNode_2_0_19_4_12=g_navNode_2_0_19_4.addNode('5312','The Board\'s composition',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/corporate-governance-report/the-boards-composition/index.htm');
g_navNode_2_0_19_5=g_navNode_2_0_19.addNode('5315','Investor Information',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/investor-information/index.htm');
g_navNode_2_0_19_5_0=g_navNode_2_0_19_5.addNode('5319','Annual General Meeting',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/investor-information/annual-general-meeting/index.htm');
g_navNode_2_0_19_5_1=g_navNode_2_0_19_5.addNode('5316','Definitions',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/investor-information/definitions/index.htm');
g_navNode_2_0_19_5_2=g_navNode_2_0_19_5.addNode('5320','Download as PDF',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/investor-information/download-as-pdf/index.htm');
g_navNode_2_0_19_5_3=g_navNode_2_0_19_5.addNode('5321','Order printed version',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/investor-information/order-printed-version/index.htm');
g_navNode_2_0_19_5_4=g_navNode_2_0_19_5.addNode('5322','Financial Calendar',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/investor-information/financial-calendar/index.htm');
g_navNode_2_0_19_5_5=g_navNode_2_0_19_5.addNode('5318','Contacts',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/investor-information/contacts/index.htm');
g_navNode_2_0_19_5_6=g_navNode_2_0_19_5.addNode('5317','Addresses',ssUrlPrefix + 'investor-relations/financial-information-and-publications/annual-report-2010/investor-information/addresses/index.htm');
g_navNode_2_1=g_navNode_2.addNode('swedbankcom-swedbank-share','Swedbank shares',ssUrlPrefix + 'investor-relations/swedbank-shares/index.htm','Description==Information about Swedbank\\x27s two types of shares, common shares and preference shares including dividens.','Keywords==Types of shares, common shares, preference shares, dividends','PageTitle==Swedbank shares - Swedbank');
g_navNode_2_1_0=g_navNode_2_1.addNode('103','Share monitor',ssUrlPrefix + 'investor-relations/swedbank-shares/share-monitor/index.htm','HeadCode==true','Keywords==Share monitor','PageTitle==Share Monitor - Swedbank');
g_navNode_2_1_1=g_navNode_2_1.addNode('113','Trading information',ssUrlPrefix + 'investor-relations/swedbank-shares/trading-information/index.htm','Description==Trading information. Swedbank\\x27s shares are listed on NASDAQ OMX Stockholm in the large cap segment','Keywords==Trading information','PageTitle==Trading information - Swedbank');
g_navNode_2_1_2=g_navNode_2_1.addNode('104','Total return calculator',ssUrlPrefix + 'investor-relations/swedbank-shares/tota-lreturn-calculator/index.htm','Description==Total return calculator. With this tool you can calculate the return of an investment in the Swedbank shares','Keywords==Total return calculator','PageTitle==Total return calculator - Swedbank');
g_navNode_2_1_3=g_navNode_2_1.addNode('105','Historical share price',ssUrlPrefix + 'investor-relations/swedbank-shares/historical-share-price/index.htm','Description==This tool will help you find daily historical share prices as well as trading volumes for shares in Swedbank and its competitors.','Keywords==Swedbank,tool,share prices,share','PageTitle==Historical share price - Swedbank');
g_navNode_2_1_4=g_navNode_2_1.addNode('109','Share repurchases',ssUrlPrefix + 'investor-relations/swedbank-shares/share-repurchases/index.htm','Description==As a financial institution Swedbank is authorised to conduct securities activities, including trading in financial instruments on its own account. Swedbank has a need to acquire its own shares in order to facilitate such activities. ','HeadCode==True','Keywords==Share repurchases','PageTitle==Share repurchases - Swedbank');
g_navNode_2_1_5=g_navNode_2_1.addNode('107','Changes in subscribed capital',ssUrlPrefix + 'investor-relations/swedbank-shares/changes-in-subscribed-capital/index.htm','Description==Changes in subscribed capital','Keywords==Changes in subscribed capital','PageTitle==Changes in subscribed capital - Swedbank');
g_navNode_2_1_6=g_navNode_2_1.addNode('110','Dividend',ssUrlPrefix + 'investor-relations/swedbank-shares/dividend/index.htm','Description==Dividend and divident policy','HeadCode==True','Keywords==Dividend','PageTitle==Dividend - Swedbank');
g_navNode_2_1_7=g_navNode_2_1.addNode('106','Insider register',ssUrlPrefix + 'investor-relations/swedbank-shares/insider-transactions/index.htm','Description==People whose position gives them insider status in Swedbank. are to report own and kindred\\x27s shareholding and change of shareholding in ','Keywords==Insider register, insiders');
g_navNode_2_1_8=g_navNode_2_1.addNode('1775','Shareholders',ssUrlPrefix + 'investor-relations/swedbank-shares/shareholders/index.htm','Description==Owner structure of Swedbank. The 10 largest shareholders, grouped according to Euroclear','Keywords==Owner structure, 10 largest shareholders, grouped according to Euroclear','PageTitle==Shareholders - Swedbank');
g_navNode_2_1_8_0=g_navNode_2_1_8.addNode('10597','Owner structure',ssUrlPrefix + 'investor-relations/swedbank-shares/shareholders/owner-structure/index.htm','Description==Swedbanks owner structure by category and country.','HeadCode==True','Keywords==Owner categories, owner structure, geographic owner structure','PageTitle==Owner structure - Swedbank');
g_navNode_2_1_9=g_navNode_2_1.addNode('112','Analysts',ssUrlPrefix + 'investor-relations/swedbank-shares/analysts/index.htm','Description==Sell-side analysts following the Swedbank share','Keywords==Analysts','PageTitle==Analysts - Swedbank');
g_navNode_2_1_10=g_navNode_2_1.addNode('1685','Consensus estimates SME',ssUrlPrefix + 'investor-relations/swedbank-shares/consensus-estimates-sme/index.htm','Description==The earnings estimates are delivered by SME Direkt and are based on estimates made by analysts covering Swedbank','Keywords==Consensus estimates SME','PageTitle==Consensus estimates \x28SME\x29 - Swedbank');
g_navNode_2_2=g_navNode_2.addNode('97','Debt investor',ssUrlPrefix + 'investor-relations/debt-investor/index.htm','Description==Informatin to debt investors including debt investor presentations, guaranteed issues, prospectus and rating','Keywords==Debt investors, debt investor presentations, guaranteed issues, prospectus and rating','PageTitle==Debt Investors - Swedbank');
g_navNode_2_2_3=g_navNode_2_2.addNode('132','Rating',ssUrlPrefix + 'investor-relations/debt-investor/rating/index.htm','HeadCode==true');
g_navNode_2_2_4=g_navNode_2_2.addNode('131','Prospectus',ssUrlPrefix + 'investor-relations/debt-investor/prospectus/index.htm');
g_navNode_2_2_5=g_navNode_2_2.addNode('133','Covered bonds',ssUrlPrefix + 'investor-relations/debt-investor/covered-bonds/index.htm');
g_navNode_2_2_6=g_navNode_2_2.addNode('7546','144a Covered Bond Program',ssUrlPrefix + 'investor-relations/debt-investor/144a-covered-bond-program/index.htm','No_Indexing==true','contributorOnly==false');
g_navNode_2_2_7=g_navNode_2_2.addNode('10528','Maturity profile',ssUrlPrefix + 'investor-relations/debt-investor/maturity-profile/index.htm','Description==Maturity profile of long-term captital market funding.','HeadCode==true','Keywords==maturity, maturity profile, long-term funding, term funding, maturities','PageTitle==Maturity profile - Swedbank');
g_navNode_2_3=g_navNode_2.addNode('96','Risk and capital adequacy',ssUrlPrefix + 'investor-relations/risk-and-capital-adequacy/index.htm','Description==Risk is defined as a potentially negative impact on a company that can arise due to current internal processes or future internal or external events','Keywords==Risk and capital adequacy','PageTitle==Risk and capital adequacy - Swedbank');
g_navNode_2_3_0=g_navNode_2_3.addNode('2798','Risk report',ssUrlPrefix + 'investor-relations/risk-and-capital-adequacy/risk-report/index.htm','Description==Swedbank\u2019s yearly reports regarding risk and capital adequacy according to the rules.','Keywords==Risk report','PageTitle==Risk and capital adequacy - Swedbank');
g_navNode_2_3_1=g_navNode_2_3.addNode('1689','Risk management',ssUrlPrefix + 'investor-relations/risk-and-capital-adequacy/risk-management/index.htm','Description==Swedbank\\x27s risk management builds on three lines of defence and a sophisticated risk process.','Keywords==Swedbank\\x27s risk management, three lines of defence, risk control, risk organisation','PageTitle==Risk management');
g_navNode_2_3_2=g_navNode_2_3.addNode('1690','Types of risk',ssUrlPrefix + 'investor-relations/risk-and-capital-adequacy/types-of-risk/index.htm','Description==For Swedbank, whose customer base mainly consists of private individuals and small and medium-sized companies, credit risk is the dominant type.','Keywords==Types of risk','PageTitle==Types of risk - Swedbank');
g_navNode_2_3_2_0=g_navNode_2_3_2.addNode('127','Credit risk',ssUrlPrefix + 'investor-relations/risk-and-capital-adequacy/types-of-risk/credit-risk/index.htm','Description==Credit risk is defined as the risk that a counterparty, or obligor, fails to meet contractual obligations to Swedbank and the risk that collateral will not cover the claim. Credit risk arises also when dealing in financial instruments, but this is often called counterparty risk.','Keywords==Credit risk','PageTitle==Credit risk - Swedbank','contributorOnly==false');
g_navNode_2_3_2_1=g_navNode_2_3_2.addNode('1691','Market risk',ssUrlPrefix + 'investor-relations/risk-and-capital-adequacy/types-of-risk/market-risk/index.htm','Description==Market risks refers to the risk that changes in interest rates, exchange rates and equity prices will lead to a decline in the value of Swedbank\u2019s net assets, including derivatives.','Keywords==Market risks','PageTitle==Market risks - Swedbank');
g_navNode_2_3_2_2=g_navNode_2_3_2.addNode('1692','Liquidity risk',ssUrlPrefix + 'investor-relations/risk-and-capital-adequacy/types-of-risk/liquidity-risk/index.htm','Description==Liquidity risks arise when the maturities of the Group\u2019s assets and liabilities, including derivatives, do not coincide. Swedbank defines liquidity risk as the risk that Swedbank cannot fulfil its payment commitments on any given due date without significantly raising the cost of obtaining means of payment.','Keywords==Liquidity risks','PageTitle==Lidquidity risks - Swedbank');
g_navNode_2_3_2_3=g_navNode_2_3_2.addNode('128','Operational risk',ssUrlPrefix + 'investor-relations/risk-and-capital-adequacy/types-of-risk/operational-risk/index.htm','Description==Operational risk refers to the risk of losses resulting from inadequate or failed internal processes or routines, human error, incorrect systems or external events.','Keywords==Operational risk','PageTitle==Operational risk - Swedbank','contributorOnly==false');
g_navNode_2_3_3=g_navNode_2_3.addNode('1693','Capital adequacy',ssUrlPrefix + 'investor-relations/risk-and-capital-adequacy/capital-adequacy/index.htm','Description==The capital base serves as a buffer against unexpected losses that can arise from risks to which Swedbank is exposed. The rules on capital adequacy \u2013 the regulatory capital \u2013 express legislators\u2019 opinion of how much capital \x28capital base\x29 a credit institution, such as a bank, must have in relation to the size of its risk taking expressed in the form of risk weighted assets. ','Keywords==Capital adequacy','PageTitle==Capital adequacy - Swedbank');
g_navNode_2_3_8=g_navNode_2_3.addNode('10489','Sensitivity analysis',ssUrlPrefix + 'investor-relations/risk-and-capital-adequacy/sensitivity-analysis/index.htm','Description==The sensitivity analysis shows the impact on our P\x26L and Balance sheet from fluctuations in for example interest rates and exchance rates. ','Keywords==Sensitivity analysis, increased, decreased, interest rates, exchange fluctuations','PageTitle==Sensitivity analysis - Swedbank');
g_navNode_2_4=g_navNode_2.addNode('108','Quick facts',ssUrlPrefix + 'investor-relations/quick-facts/index.htm','Description==Quick facts, re products and services, number of customers, home markets, busieness areas etc','Keywords==quick facts','PageTitle==Quick facts  - Swedbank');
g_navNode_2_4_0=g_navNode_2_4.addNode('10608','Important events',ssUrlPrefix + 'investor-relations/quick-facts/important-events/index.htm','Description==A quick overview of important events in Swedbank.','Keywords==Important events, overview, recent events, summary, quarterly events','PageTitle==Important events - Swedbank');
g_navNode_2_4_1=g_navNode_2_4.addNode('10446','Market shares',ssUrlPrefix + 'investor-relations/quick-facts/market-shares/index.htm','Description==Swedbank\\x27s market shares on the home markets, Sweden, Estonia, Latvia and Lithuania','Keywords==Market shares','PageTitle==Market shares - Swedbank');
g_navNode_2_5=g_navNode_2.addNode('290','Calendar',ssUrlPrefix + 'investor-relations/calendar/index.htm','Description==Calendar showing dates for the release of interim reports, year-end reports, silent periods, capital market days, conferences, seminars, roadshows','Keywords==Financial calendar, slient periods, capital market days, interim reports, year-end reports','PageTitle==Financial Calendar - Swedbank','contributorOnly==false');
g_navNode_2_5_0=g_navNode_2_5.addNode('300','Macro calendar',ssUrlPrefix + 'investor-relations/calendar/macro-calendar/index.htm','Description==Dates for the preliminary release of statistical information for Sweden, Estonia, Latvia and LIthuania. ','Keywords==Macro calendar','PageTitle==Macro calendar','contributorOnly==false');
g_navNode_2_6=g_navNode_2.addNode('2465','Annual general meeting',ssUrlPrefix + 'investor-relations/annual-general-meeting/index.htm','Description==Information about annual general meeting procedures of registration etc','Keywords==Annual General Meeting','PageTitle==Annual General Meeting - Swedbank');
g_navNode_2_7=g_navNode_2.addNode('2974','Order and Subscribe',ssUrlPrefix + 'investor-relations/order-and-subscribe/index.htm','Description==Here you can subscribe to Swedbank interim reports and/or press releases to your e-mail. You can also order annual reports in printed format.','Keywords==Subscribe, interim reports, pess releases, annual reports','PageTitle==Order and subscribe - Swedbank');
g_navNode_2_10=g_navNode_2.addNode('102','Contacts',ssUrlPrefix + 'investor-relations/contacts/index.htm','Description==Here you will find contact details of the staff of the Investor Relations and Debt Investor Relations deparments at Swedbank','Keywords==Contact details, Investor relations department, Debt Investor Relations department','PageTitle==Contacts Investor Relations and Debt Investor Relations - Swedbank');
g_navNode_3=g_navNode_Root.addNode('5','Services',ssUrlPrefix + 'services/index.htm','Description==About Swedbank\\x27s products and services for private, corporate and institutional customers.','Keywords==services, private customers, corporate customers, institutional customers, corporate banking, private banking, MIFID, SEPA','PageTitle==Services - Swedbank','Sitester==false');
g_navNode_3_0=g_navNode_3.addNode('135','Corporate',ssUrlPrefix + 'services/corporate/index.htm','PageTitle==Corporate - Swedbank');
g_navNode_3_0_0=g_navNode_3_0.addNode('142','International presence',ssUrlPrefix + 'services/corporate/international-presence/index.htm');
g_navNode_3_0_1=g_navNode_3_0.addNode('143','Cash Management',ssUrlPrefix + 'services/corporate/cash-management/index.htm');
g_navNode_3_0_1_0=g_navNode_3_0_1.addNode('164','Accounts',ssUrlPrefix + 'services/corporate/cash-management/accounts/index.htm');
g_navNode_3_0_1_1=g_navNode_3_0_1.addNode('165','Cash Pool',ssUrlPrefix + 'services/corporate/cash-management/cash-pool/index.htm');
g_navNode_3_0_1_2=g_navNode_3_0_1.addNode('166','Payments',ssUrlPrefix + 'services/corporate/cash-management/payments/index.htm');
g_navNode_3_0_1_3=g_navNode_3_0_1.addNode('167','Cash \x26 Cards',ssUrlPrefix + 'services/corporate/cash-management/cash-cards/index.htm');
g_navNode_3_0_1_4=g_navNode_3_0_1.addNode('168','On-line Banking Solutions',ssUrlPrefix + 'services/corporate/cash-management/on-line-banking-solutions/index.htm');
g_navNode_3_0_1_5=g_navNode_3_0_1.addNode('169','e-Services',ssUrlPrefix + 'services/corporate/cash-management/e-services/index.htm');
g_navNode_3_0_2=g_navNode_3_0.addNode('183','Trade Finance',ssUrlPrefix + 'services/corporate/trade-finance/index.htm');
g_navNode_3_0_2_0=g_navNode_3_0_2.addNode('4568','Import Documentary Collection',ssUrlPrefix + 'services/corporate/trade-finance/import/index.htm','contributorOnly==false');
g_navNode_3_0_2_1=g_navNode_3_0_2.addNode('4601','Import Letter of Credit',ssUrlPrefix + 'services/corporate/trade-finance/import-letter-of-credit/index.htm','contributorOnly==false');
g_navNode_3_0_2_2=g_navNode_3_0_2.addNode('4569','Export documentary collection',ssUrlPrefix + 'services/corporate/trade-finance/export/index.htm','contributorOnly==false');
g_navNode_3_0_2_3=g_navNode_3_0_2.addNode('4602','Export Letter of Credit',ssUrlPrefix + 'services/corporate/trade-finance/export-letter-of-credit/index.htm','contributorOnly==false');
g_navNode_3_0_2_5=g_navNode_3_0_2.addNode('188','Acquisition and Project Finance',ssUrlPrefix + 'services/corporate/trade-finance/acquisition-and-projectfinance/index.htm');
g_navNode_3_0_2_6=g_navNode_3_0_2.addNode('180','Trade Finance Online',ssUrlPrefix + 'services/corporate/trade-finance/trade-finance-online/index.htm');
g_navNode_3_0_3=g_navNode_3_0.addNode('144','Financing',ssUrlPrefix + 'services/corporate/financing/index.htm');
g_navNode_3_0_3_0=g_navNode_3_0_3.addNode('170','Leasing \x26 Factoring',ssUrlPrefix + 'services/corporate/financing/leasing-factoring/index.htm');
g_navNode_3_0_3_1=g_navNode_3_0_3.addNode('171','Acquisition \x26 Project Finance',ssUrlPrefix + 'services/corporate/financing/acquisition-project-finance/index.htm');
g_navNode_3_0_3_2=g_navNode_3_0_3.addNode('172','Export Finance',ssUrlPrefix + 'services/corporate/financing/export-finance/index.htm');
g_navNode_3_0_3_3=g_navNode_3_0_3.addNode('173','Marine Finance',ssUrlPrefix + 'services/corporate/financing/marine-finance/index.htm');
g_navNode_3_0_4=g_navNode_3_0.addNode('145','Corporate Finance',ssUrlPrefix + 'services/corporate/corporate-finance/index.htm');
g_navNode_3_0_4_0=g_navNode_3_0_4.addNode('174','Success factors',ssUrlPrefix + 'services/corporate/corporate-finance/success-factors/index.htm');
g_navNode_3_0_4_1=g_navNode_3_0_4.addNode('175','M \x26 A',ssUrlPrefix + 'services/corporate/corporate-finance/m-a/index.htm');
g_navNode_3_0_4_2=g_navNode_3_0_4.addNode('176','Capital raising and IPOs',ssUrlPrefix + 'services/corporate/corporate-finance/capital-raising-and-ipos/index.htm');
g_navNode_3_0_4_3=g_navNode_3_0_4.addNode('177','Incentive programme',ssUrlPrefix + 'services/corporate/corporate-finance/incentive-programme/index.htm');
g_navNode_3_0_4_4=g_navNode_3_0_4.addNode('178','Other ownership issues',ssUrlPrefix + 'services/corporate/corporate-finance/other-owner-ship-issues/index.htm');
g_navNode_3_0_4_5=g_navNode_3_0_4.addNode('179','Equity Capital Markets',ssUrlPrefix + 'services/corporate/corporate-finance/equity-capital-markets/index.htm');
g_navNode_3_0_5=g_navNode_3_0.addNode('147','Securities Services',ssUrlPrefix + 'services/corporate/securitiesservices/index.htm');
g_navNode_3_0_6=g_navNode_3_0.addNode('148','Markets',ssUrlPrefix + 'services/corporate/markets/index.htm');
g_navNode_3_0_7=g_navNode_3_0.addNode('149','Asset Management',ssUrlPrefix + 'services/corporate/asset-management/index.htm');
g_navNode_3_0_8=g_navNode_3_0.addNode('150','Life and Pension',ssUrlPrefix + 'services/corporate/life-and-pension/index.htm');
g_navNode_3_1=g_navNode_3.addNode('136','Banks and Financial Institutions',ssUrlPrefix + 'services/banks-and-financialinstitutions/index.htm','PageTitle==Banks and Financial Institutions - Swedbank');
g_navNode_3_1_0=g_navNode_3_1.addNode('181','Transaction Banking',ssUrlPrefix + 'services/banks-and-financialinstitutions/transaction-banking/index.htm');
g_navNode_3_1_0_0=g_navNode_3_1_0.addNode('186','Sales / Contact',ssUrlPrefix + 'services/banks-and-financialinstitutions/transaction-banking/sales-contact/index.htm');
g_navNode_3_1_2=g_navNode_3_1.addNode('184','Bank Relations',ssUrlPrefix + 'services/banks-and-financialinstitutions/bank-relations/index.htm');
g_navNode_3_2=g_navNode_3.addNode('137','Private',ssUrlPrefix + 'services/private/index.htm','PageTitle==Private - Swedbank');
g_navNode_3_3=g_navNode_3.addNode('138','Private Banking',ssUrlPrefix + 'services/private-banking/index.htm','PageTitle==Private Banking - Swedbank');
g_navNode_3_4=g_navNode_3.addNode('139','SEPA',ssUrlPrefix + 'services/sepa/index.htm','PageTitle==SEPA - Swedbank');
g_navNode_3_4_0=g_navNode_3_4.addNode('193','Timeplan',ssUrlPrefix + 'services/sepa/timeplan/index.htm');
g_navNode_3_4_1=g_navNode_3_4.addNode('194','Questions \x26 Answers',ssUrlPrefix + 'services/sepa/questions-answers/index.htm');
g_navNode_3_4_2=g_navNode_3_4.addNode('195','Geographical area',ssUrlPrefix + 'services/sepa/geographical-area/index.htm');
g_navNode_3_4_3=g_navNode_3_4.addNode('196','Definitions',ssUrlPrefix + 'services/sepa/definitions/index.htm');
g_navNode_3_5=g_navNode_3.addNode('140','MiFID',ssUrlPrefix + 'services/mifid/index.htm','PageTitle==MiFID - Swedbank');
g_navNode_3_6=g_navNode_3.addNode('141','Anti Money Laundering',ssUrlPrefix + 'services/anti-money-laundering/index.htm','PageTitle==Anti Money Laundering - Swedbank');
g_navNode_4=g_navNode_Root.addNode('6','Corporate Sustainability',ssUrlPrefix + 'corporate-sustainability/index.htm','Description==Swedbank\u2019s support of and activities in the area of Corporate Social Responsibility','Keywords==CSR, policies, envirionment, GRI, trust, corporate governance, indexes, corporate social responsibility, society, ethics, sustainability, ','PageTitle==Corporate Sustainability - Swedbank','Sitester==false');
g_navNode_4_0=g_navNode_4.addNode('342','Global Reporting Initiative \x28GRI\x29',ssUrlPrefix + 'corporate-sustainability/global-reporting-initiative-gri/index.htm','PageTitle==Global Reporting Initiative \x28GRI\x29 - Swedbank','contributorOnly==false');
g_navNode_4_0_0=g_navNode_4_0.addNode('356','Introduction by Michael Wolf',ssUrlPrefix + 'corporate-sustainability/global-reporting-initiative-gri/introduction-by-michael-wolf/index.htm','PageTitle==Introduction by Michael Wolf - Swedbank','contributorOnly==false');
g_navNode_4_0_1=g_navNode_4_0.addNode('344','Report parameters',ssUrlPrefix + 'corporate-sustainability/global-reporting-initiative-gri/report-parameters/index.htm','PageTitle==Report parameters - Swedbank','contributorOnly==false');
g_navNode_4_1=g_navNode_4.addNode('197','Sustainability reports',ssUrlPrefix + 'corporate-sustainability/sustainability-reports/index.htm','PageTitle==Sustainability reports - Swedbank');
g_navNode_4_2=g_navNode_4.addNode('198','Values and policies',ssUrlPrefix + 'corporate-sustainability/values-and-policies/index.htm','PageTitle==Values and policies - Swedbank');
g_navNode_4_2_0=g_navNode_4_2.addNode('203','Sustainability Policy',ssUrlPrefix + 'corporate-sustainability/values-and-policies/csr-policy/index.htm','PageTitle==CSR policy - Swedbank');
g_navNode_4_2_1=g_navNode_4_2.addNode('204','Ethics',ssUrlPrefix + 'corporate-sustainability/values-and-policies/ethics/index.htm','PageTitle==Ethics - Swedbank');
g_navNode_4_2_2=g_navNode_4_2.addNode('205','Equality and diversity',ssUrlPrefix + 'corporate-sustainability/values-and-policies/equality-and-diversity/index.htm','PageTitle==Equality and diversity - Swedbank');
g_navNode_4_2_3=g_navNode_4_2.addNode('206','Credit policy',ssUrlPrefix + 'corporate-sustainability/values-and-policies/credit-policy/index.htm','PageTitle==Credit policy - Swedbank');
g_navNode_4_2_4=g_navNode_4_2.addNode('207','AML, CFT and KYC declaration',ssUrlPrefix + 'corporate-sustainability/values-and-policies/aml-cft-and-kyc-declaration/index.htm','PageTitle==AML, CFT and KYC declaration - Swedbank');
g_navNode_4_2_5=g_navNode_4_2.addNode('208','Investment process',ssUrlPrefix + 'corporate-sustainability/values-and-policies/investment-process/index.htm','PageTitle==Ivestment process - Swedbank');
g_navNode_4_2_6=g_navNode_4_2.addNode('348','Supplier relationships',ssUrlPrefix + 'corporate-sustainability/values-and-policies/supplier-relationships/index.htm','PageTitle==Supplier relationships - Swedbank','contributorOnly==false');
g_navNode_4_3=g_navNode_4.addNode('199','International Agreements \x26 Indexes',ssUrlPrefix + 'corporate-sustainability/international-agreements-indexes/index.htm','PageTitle==International Agreements \x26 Indexes - Swedbank');
g_navNode_4_4=g_navNode_4.addNode('200','Environment',ssUrlPrefix + 'corporate-sustainability/environment/index.htm','PageTitle==Environment - Swedbank');
g_navNode_4_4_0=g_navNode_4_4.addNode('209','Targets and strategies',ssUrlPrefix + 'corporate-sustainability/environment/targets-and-strategies/index.htm','PageTitle==Environmental targets and strategies - Swedbank');
g_navNode_4_4_1=g_navNode_4_4.addNode('210','Policy',ssUrlPrefix + 'corporate-sustainability/environment/policy/index.htm','Description==This policy describes and establishes the basic and common view within Swedbank Group on the Environmental impact','Keywords==policy,enviroment,csr,Swedbank Group,awareness','PageTitle==Enviroment policy - Swedbank');
g_navNode_4_4_2=g_navNode_4_4.addNode('211','Environmental Impact',ssUrlPrefix + 'corporate-sustainability/environment/environmental-impact/index.htm','PageTitle==Environment impact - Swedbank');
g_navNode_4_4_3=g_navNode_4_4.addNode('212','Products and services',ssUrlPrefix + 'corporate-sustainability/environment/products-and-services/index.htm','PageTitle==Environment products and services - Swedbank');
g_navNode_4_4_4=g_navNode_4_4.addNode('341','Climate change',ssUrlPrefix + 'corporate-sustainability/environment/climate-change/index.htm','PageTitle==Environment climate change - Swedbank','contributorOnly==false');
g_navNode_4_4_5=g_navNode_4_4.addNode('472','Earth Hour',ssUrlPrefix + 'corporate-sustainability/environment/earth-hour/index.htm','Description==About Swedbanks\\x27 engagement in Eart Hour','Keywords==earth hour, environment, sustainability','PageTitle==Earth hour - Swedbank','ShareThis==true','contributorOnly==false');
g_navNode_4_5=g_navNode_4.addNode('201','Community involvement',ssUrlPrefix + 'corporate-sustainability/community-involvement/index.htm','PageTitle==Community involvement - Swedbank');
g_navNode_4_5_0=g_navNode_4_5.addNode('213','Across borders',ssUrlPrefix + 'corporate-sustainability/community-involvement/across-borders/index.htm','PageTitle==Across borders - Swedbank');
g_navNode_4_5_1=g_navNode_4_5.addNode('214','Sweden',ssUrlPrefix + 'corporate-sustainability/community-involvement/sweden/index.htm','PageTitle==Sweden - Swedbank');
g_navNode_4_5_2=g_navNode_4_5.addNode('215','Estonia',ssUrlPrefix + 'corporate-sustainability/community-involvement/estonia/index.htm','PageTitle==Estonia - Swedbank');
g_navNode_4_5_3=g_navNode_4_5.addNode('216','Latvia',ssUrlPrefix + 'corporate-sustainability/community-involvement/latvia/index.htm','PageTitle==Latvia - Swedbank');
g_navNode_4_5_4=g_navNode_4_5.addNode('217','Lithuania',ssUrlPrefix + 'corporate-sustainability/community-involvement/lithuania/index.htm','PageTitle==Lithuania - Swedbank');
g_navNode_4_5_5=g_navNode_4_5.addNode('340','Financial literacy',ssUrlPrefix + 'corporate-sustainability/community-involvement/financial-literacy/index.htm','PageTitle==Financial literacy - Swedbank','contributorOnly==false');
g_navNode_4_6=g_navNode_4.addNode('309','CSR News',ssUrlPrefix + 'corporate-sustainability/csr-news/index.htm','PageTitle==CSR News - Swedbank','contributorOnly==false');
g_navNode_4_7=g_navNode_4.addNode('202','Contacts',ssUrlPrefix + 'corporate-sustainability/contacts/index.htm','PageTitle==Contacts - Swedbank');
g_navNode_5=g_navNode_Root.addNode('7','Career',ssUrlPrefix + 'career/index.htm','Description==Career at Swedbank in different aspects.','Keywords==career, employees, personnel, recruiting, vacancies, job opportunities, students','PageTitle==Career - Swedbank','Sitester==false');
g_navNode_5_0=g_navNode_5.addNode('13533','Culture',ssUrlPrefix + 'career/culture/index.htm');
g_navNode_5_2=g_navNode_5.addNode('222','Employees',ssUrlPrefix + 'career/employees/index.htm','PageTitle==Our employees - Swedbank');
g_navNode_5_3=g_navNode_5.addNode('13534','Leadership',ssUrlPrefix + 'career/leadership/index.htm');
g_navNode_5_4=g_navNode_5.addNode('223','Students',ssUrlPrefix + 'career/students/index.htm','PageTitle==Students - Swedbank');
g_navNode_5_5=g_navNode_5.addNode('224','Job openings',ssUrlPrefix + 'career/job-openings/index.htm','PageTitle==Job opportunities - Swedbank');
g_navNode_10=g_navNode_Root.addNode('1101','Corporate Finance Russia',ssUrlPrefix + 'corporate-finance-russia/index.htm','BankNumber==8999','Site==true');
g_navNode_10_0=g_navNode_10.addNode('1100','\u0424\u0430\u043a\u0442\u043e\u0440\u044b \u0443\u0441\u043f\u0435\u0445\u0430',ssUrlPrefix + 'corporate-finance-russia/\u0444\u0430\u043a\u0442\u043e\u0440\u044b-\u0443\u0441\u043f\u0435\u0445\u0430/index.htm');
g_navNode_10_1=g_navNode_10.addNode('1102','\u0421\u043b\u0438\u044f\u043d\u0438\u044f \u0438 \u043f\u043e\u0433\u043b\u043e\u0449\u0435\u043d\u0438\u044f',ssUrlPrefix + 'corporate-finance-russia/\u0441\u043b\u0438\u044f\u043d\u0438\u044f-\u0438-\u043f\u043e\u0433\u043b\u043e\u0449\u0435\u043d\u0438\u044f/index.htm');
g_navNode_10_2=g_navNode_10.addNode('1103','\u041f\u0440\u0438\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0430 \u0438 \u043f\u0435\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u044b\u0435 \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0435 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0430\u043a\u0446\u0438\u0439 \x28IPO\x29',ssUrlPrefix + 'corporate-finance-russia/\u043f\u0440\u0438\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435-\u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0430-\u0438-\u043f\u0435\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u044b\u0435-\u043f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0435-\u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u044f-\u0430\u043a\u0446\u0438\u0439-ipo/index.htm');
g_navNode_10_3=g_navNode_10.addNode('1104','\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 \u043f\u043e\u043e\u0449\u0440\u0435\u043d\u0438\u044f',ssUrlPrefix + 'corporate-finance-russia/\u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430-\u043f\u043e\u043e\u0449\u0440\u0435\u043d\u0438\u044f/index.htm');
g_navNode_10_4=g_navNode_10.addNode('1105','\u0414\u0440\u0443\u0433\u0438\u0435 \u0432\u043e\u043f\u0440\u043e\u0441\u044b \u043f\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044e \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u044c\u044e',ssUrlPrefix + 'corporate-finance-russia/\u0434\u0440\u0443\u0433\u0438\u0435-\u0432\u043e\u043f\u0440\u043e\u0441\u044b-\u043f\u043e-\u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044e-\u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u044c\u044e/index.htm');
g_navNode_10_5=g_navNode_10.addNode('1106','\u0420\u044b\u043d\u043a\u0438 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0430',ssUrlPrefix + 'corporate-finance-russia/\u0440\u044b\u043d\u043a\u0438-\u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e-\u043a\u0430\u043f\u0438\u0442\u0430\u043b\u0430/index.htm');
g_navNode_11=g_navNode_Root.addNode('1109','Corporate Finance Estonia',ssUrlPrefix + 'corporate-finance-estonia/index.htm','BankNumber==8999','Site==true');
g_navNode_11_0=g_navNode_11.addNode('1110','Edufaktorid',ssUrlPrefix + 'corporate-finance-estonia/edufaktorid/index.htm');
g_navNode_11_1=g_navNode_11.addNode('1111','Ettev\xf5tete ostu-m\xfc\xfcgi n\xf5ustamine \x28M\x26A\x29',ssUrlPrefix + 'corporate-finance-estonia/ettev\xf5tete-ostu-m\xfc\xfcgi-n\xf5ustamine-ma/index.htm');
g_navNode_11_2=g_navNode_11.addNode('1112','Kapitali kaasamine ja aktsiate esmane avalik pakkumine \x28IPO\x29',ssUrlPrefix + 'corporate-finance-estonia/kapitali-kaasamine-ja-aktsiate-esmane-avalik-pakkumine-ipo/index.htm');
g_navNode_11_3=g_navNode_11.addNode('1113','V\xf5tmet\xf6\xf6tajate motiveerimiss\xfcsteemid',ssUrlPrefix + 'corporate-finance-estonia/v\xf5tmetootajate-motiveerimiss\xfcsteemid/index.htm');
g_navNode_11_4=g_navNode_11.addNode('1114','Muud omandiga seotud k\xfcsimused',ssUrlPrefix + 'corporate-finance-estonia/muud-omandiga-seotud-k\xfcsimused/index.htm');
g_navNode_11_5=g_navNode_11.addNode('1115','Aktsiaturud',ssUrlPrefix + 'corporate-finance-estonia/aktsiaturud/index.htm');
g_navNode_12=g_navNode_Root.addNode('1116','Corporate Finance Latvia',ssUrlPrefix + 'corporate-finance-latvia/index.htm','BankNumber==8999','Site==true');
g_navNode_12_0=g_navNode_12.addNode('1117','Veiksm\u012bgas darb\u012bbas faktori',ssUrlPrefix + 'corporate-finance-latvia/veiksm\u012bgas-darb\u012bbas-faktori/index.htm');
g_navNode_12_1=g_navNode_12.addNode('1118','Uz\u0146\u0113mumu apvieno\u0161ana un ieg\u0101de \x28M\x26A\x29',ssUrlPrefix + 'corporate-finance-latvia/uz\u0146\u0113mumu-apvieno\u0161ana-un-ieg\u0101de-ma/index.htm');
g_navNode_12_2=g_navNode_12.addNode('1119','Kapit\u0101la piesaiste un s\u0101kotn\u0113jie publiskie pied\u0101v\u0101jumi \x28IPOs\x29',ssUrlPrefix + 'corporate-finance-latvia/kapit\u0101la-piesaiste-un-s\u0101kotn\u0113jie-publiskie-pied\u0101v\u0101jumi-ipos/index.htm');
g_navNode_12_3=g_navNode_12.addNode('1120','Darb\u012bbas veicin\u0101\u0161anas programma',ssUrlPrefix + 'corporate-finance-latvia/darb\u012bbas-veicin\u0101\u0161anas-programma/index.htm');
g_navNode_12_4=g_navNode_12.addNode('1121','Citi ar uz\u0146\u0113muma \u012bpa\u0161umties\u012bb\u0101m saist\u012bti jaut\u0101jumi',ssUrlPrefix + 'corporate-finance-latvia/citi-ar-uz\u0146\u0113muma-\u012bpa\u0161umties\u012bb\u0101m-saist\u012bti-jaut\u0101jumi/index.htm');
g_navNode_12_5=g_navNode_12.addNode('1122','Akciju kapit\u0101la tirgi',ssUrlPrefix + 'corporate-finance-latvia/akciju-kapit\u0101la-tirgi/index.htm');
g_navNode_13=g_navNode_Root.addNode('1123','Corporate Finance Lithuania',ssUrlPrefix + 'corporate-finance-lithuania/index.htm','BankNumber==8999','Site==true');
g_navNode_13_0=g_navNode_13.addNode('1124','S\u0117km\u0117s veiksniai',ssUrlPrefix + 'corporate-finance-lithuania/s\u0117km\u0117s-veiksniai/index.htm');
g_navNode_13_1=g_navNode_13.addNode('1125','Konsultacijos \u012fmoni\u0173 susijungim\u0173 ir \u012fsigijim\u0173 klausimais \x28,,M\x26A\"\x29',ssUrlPrefix + 'corporate-finance-lithuania/konsultacijos-\u012fmoni\u0173-susijungim\u0173-ir-\u012fsigijim\u0173-klausimais-ma/index.htm');
g_navNode_13_2=g_navNode_13.addNode('1126','Kapitalo pritraukimas ir pirminiai vie\u0161i akcij\u0173 pasi\u016blymai \x28,,IPO\"\x29',ssUrlPrefix + 'corporate-finance-lithuania/kapitalo-pritraukimas-ir-pirminiai-vie\u0161i-akcij\u0173-pasi\u016blymai-ipo/index.htm');
g_navNode_13_3=g_navNode_13.addNode('1127','Motyvacin\u0117s darbuotoj\u0173 akcij\u0173 programos',ssUrlPrefix + 'corporate-finance-lithuania/motyvacin\u0117s-darbuotoj\u0173-akcij\u0173-programos/index.htm');
g_navNode_13_4=g_navNode_13.addNode('1128','Kiti nuosavyb\u0117s klausimai',ssUrlPrefix + 'corporate-finance-lithuania/kiti-nuosavyb\u0117s-klausimai/index.htm');
g_navNode_13_5=g_navNode_13.addNode('1129','Kapitalo rink\u0173 padalinys',ssUrlPrefix + 'corporate-finance-lithuania/kapitalo-rink\u0173-padalinys/index.htm','BankNumber==8999','Site==true');

