/////////////////////////////////////////////////////////////////////////////
// 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('303','Startseite',ssUrlPrefix + 'index.htm',null,'AdditionalCSS==groups/globaltemplates/documents/web_asset/emeacss.css,groups/globaltemplates/documents/web_asset/landing_page_css.css','ComplianceNodeId==1605','DisplayDateFormat==dd.MM.yyyy','HTTPMetaText==\x3cmeta name\x3d\"google-site-verification\" content\x3d\"nQfMrXKjT4nUSawZrUznqy_SEIrj8LJczGuJcZEO1Y8\" /\x3e','Language==de','NoCookiesNodeId==5052','NotComplianceProtected==TRUE','OmnitureID==blkat-prod','StartDivID==LandingPage','iShareHome==Y','iSharesHome==Y');
g_navNode_0=g_navNode_Root.addNode('391','Institutionelle Anleger \x26 Consultants',ssUrlPrefix + 'InstitutionalInvestors/index.htm','ShowClientLogin==TRUE','ShowRelResources==TRUE','SiloName==Institutionelle Anleger \x26 Consultants');
g_navNode_0_5=g_navNode_0.addNode('1476','Kontakt',ssUrlPrefix + 'InstitutionalInvestors/ContactinFrankfurt/index.htm','ShowRelResources==TRUE');
g_navNode_0_6=g_navNode_0.addNode('2678','Investment Einblicke',ssUrlPrefix + 'InstitutionalInvestors/InvestmentInsight/index.htm');
g_navNode_0_6_0=g_navNode_0_6.addNode('2679','Marktinformationen',ssUrlPrefix + 'InstitutionalInvestors/InvestmentInsight/MarketViews/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_0_6_1=g_navNode_0_6.addNode('2680','Strategische Eckpunkte',ssUrlPrefix + 'InstitutionalInvestors/InvestmentInsight/StrategicFramework/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_0_6_2=g_navNode_0_6.addNode('2681','Global Strategic Framework',ssUrlPrefix + 'InstitutionalInvestors/InvestmentInsight/GlobalStrategicFramework/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_0_6_3=g_navNode_0_6.addNode('3743','Multimedia',ssUrlPrefix + 'InstitutionalInvestors/InvestmentInsight/Multimedia/index.htm','RedirectURL==3750');
g_navNode_0_6_3_0=g_navNode_0_6_3.addNode('3750','Webcasts',ssUrlPrefix + 'InstitutionalInvestors/InvestmentInsight/Multimedia/Webcasts/index.htm');
g_navNode_0_6_3_1=g_navNode_0_6_3.addNode('3755','Webcast Popup',ssUrlPrefix + 'InstitutionalInvestors/InvestmentInsight/Multimedia/WebcastPopup/index.htm');
g_navNode_0_7=g_navNode_0.addNode('1198','Hilfe-Funktionen',ssUrlPrefix + 'InstitutionalInvestors/Support/index.htm','RedirectURL==1174');
g_navNode_0_7_0=g_navNode_0_7.addNode('1174','\xdcbersicht',ssUrlPrefix + 'InstitutionalInvestors/Support/Overview/index.htm','DoNotShowInNavigation==FALSE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_0_7_1=g_navNode_0_7.addNode('1175','Investor Relations',ssUrlPrefix + 'InstitutionalInvestors/Support/InvestorRelations/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_0_7_3=g_navNode_0_7.addNode('1177','Karriere',ssUrlPrefix + 'InstitutionalInvestors/Support/Careers/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_0_9=g_navNode_0.addNode('5773','Client Login Popup Help',ssUrlPrefix + 'InstitutionalInvestors/ClientLoginPopupHelp/index.htm','AdditionalCSS==groups/globaltemplates/international/css/emeacss.css,groups/globaltemplates/international/css/blkinternet.css,groups/globaltemplates/international/css/landing_page_css.css','DoNotShowInNavigation==TRUE','ShowClientLogin==TRUE');
g_navNode_1=g_navNode_Root.addNode('346','Wir \xfcber uns',ssUrlPrefix + 'AboutUs/index.htm','NotComplianceProtected==TRUE','RedirectURL==348','SiloName==Wir \xfcber uns');
g_navNode_1_0=g_navNode_1.addNode('348','\xdcbersicht',ssUrlPrefix + 'AboutUs/Overview/index.htm','DoNotShowInNavigation==FALSE','NotComplianceProtected==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==FALSE');
g_navNode_1_1=g_navNode_1.addNode('347','Investor Relations',ssUrlPrefix + 'AboutUs/InvestorRelations/index.htm','NotComplianceProtected==TRUE','ShowRelResources==TRUE');
g_navNode_1_2=g_navNode_1.addNode('349','Presseraum',ssUrlPrefix + 'AboutUs/Press/index.htm','NotComplianceProtected==FALSE','RedirectURL==2664','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_1_2_0=g_navNode_1_2.addNode('2640','Presseraum',ssUrlPrefix + 'AboutUs/Press/Press/index.htm','DoNotShowInNavigation==TRUE','RedirectURL==2664');
g_navNode_1_2_0_0=g_navNode_1_2_0.addNode('2664','Aktuellste Pressemitteilungen',ssUrlPrefix + 'AboutUs/Press/Press/Latest/index.htm','QuarterToShow==0','Query==dDocType \x3cmatches\x3e \x60Literature\x60 \x3cAND\x3e xSubType \x3cmatches\x3e \\x2723\\x27 \x3cAND\x3e xWebsites \x3ccontains\x3e \x60at\x60','ShowNavInTabs==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==FALSE');
g_navNode_1_2_0_1=g_navNode_1_2_0.addNode('2610','Jan. - Mrz.',ssUrlPrefix + 'AboutUs/Press/Press/Jan-Mar/index.htm','DoNotShowInNavigation==TRUE','QuarterToShow==1','Query==dDocType \x3cmatches\x3e \x60Literature\x60 \x3cAND\x3e xSubType \x3cmatches\x3e \\x2723\\x27 \x3cAND\x3e xWebsites \x3ccontains\x3e \x60at\x60','ShowNavInTabs==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==FALSE');
g_navNode_1_2_0_2=g_navNode_1_2_0.addNode('2612','Apr. - Jun.',ssUrlPrefix + 'AboutUs/Press/Press/Apr-Jun/index.htm','DoNotShowInNavigation==TRUE','QuarterToShow==2','Query==dDocType \x3cmatches\x3e \x60Literature\x60 \x3cAND\x3e xSubType \x3cmatches\x3e \\x2723\\x27 \x3cAND\x3e xWebsites \x3ccontains\x3e \x60at\x60','ShowNavInTabs==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==FALSE');
g_navNode_1_2_0_3=g_navNode_1_2_0.addNode('2613','Jul. - Sep.',ssUrlPrefix + 'AboutUs/Press/Press/July-Sep/index.htm','DoNotShowInNavigation==TRUE','QuarterToShow==3','Query==dDocType \x3cmatches\x3e \x60Literature\x60 \x3cAND\x3e xSubType \x3cmatches\x3e \\x2723\\x27 \x3cAND\x3e xWebsites \x3ccontains\x3e \x60at\x60','ShowNavInTabs==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==FALSE');
g_navNode_1_2_0_4=g_navNode_1_2_0.addNode('2614','Okt. - Dez.',ssUrlPrefix + 'AboutUs/Press/Press/Oct-Dec/index.htm','DoNotShowInNavigation==TRUE','QuarterToShow==4','Query==dDocType \x3cmatches\x3e \x60Literature\x60 \x3cAND\x3e xSubType \x3cmatches\x3e \\x2723\\x27 \x3cAND\x3e xWebsites \x3ccontains\x3e \x60at\x60','ShowNavInTabs==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==FALSE');
g_navNode_1_3=g_navNode_1.addNode('350','Karriere',ssUrlPrefix + 'AboutUs/Careers/index.htm','NotComplianceProtected==TRUE','ShowRelResources==TRUE');
g_navNode_1_5=g_navNode_1.addNode('1196','Wichtige Informationen',ssUrlPrefix + 'AboutUs/LegalInformation/index.htm','ShowRelResources==TRUE');
g_navNode_1_6=g_navNode_1.addNode('1197','Datenschutz',ssUrlPrefix + 'AboutUs/PrivacyStatement/index.htm','ShowRelResources==TRUE');
g_navNode_2=g_navNode_Root.addNode('351','Privatanleger',ssUrlPrefix + 'IndividualInvestors/index.htm','HideLiteratureFinder==FALSE','ShowFundFinder==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE','SiloName==6','TargetNodes==eValuator\x3d2148,prices\x3d369','xmlid==FC_18325');
g_navNode_2_0=g_navNode_2.addNode('352','Literatur',ssUrlPrefix + 'IndividualInvestors/Literature/index.htm');
g_navNode_2_0_1=g_navNode_2_0.addNode('357','Informationsmaterial',ssUrlPrefix + 'IndividualInvestors/Literature/BrochuresAndSupportMaterial/index.htm','RedirectURL==2133');
g_navNode_2_0_1_2=g_navNode_2_0_1.addNode('2133','Fondsflyer',ssUrlPrefix + 'IndividualInvestors/Literature/BrochuresAndSupportMaterial/fund-flyer/index.htm','Query==dDocType \x3cmatches\x3e \x60Literature\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60at\x60  \x3cAND\x3e  xSubType \x3ccontains\x3e \x6073\x60  \x3cAND\x3e  xTargetAudienceOrVenue \x3ccontains\x3e \x601\x60','ShowRelResources==TRUE','SortFields==xDocumentDate Desc');
g_navNode_2_0_1_3=g_navNode_2_0_1.addNode('361','Sonstiges',ssUrlPrefix + 'IndividualInvestors/Literature/BrochuresAndSupportMaterial/Other/index.htm','Query==dDocType \x3cmatches\x3e \x60Literature\x60  \x3cAND\x3e  xLanguage \x3csubstring\x3e \x60de\x60  \x3cAND\x3e  xSubType \x3csubstring\x3e \x6071\x60','ShowRelResources==TRUE');
g_navNode_2_0_2=g_navNode_2_0.addNode('362','Rechtliche Literatur',ssUrlPrefix + 'IndividualInvestors/Literature/LegalDocuments/index.htm','RedirectURL==2627');
g_navNode_2_0_2_0=g_navNode_2_0_2.addNode('2627','Prospekte',ssUrlPrefix + 'IndividualInvestors/Literature/LegalDocuments/Prospectuses/index.htm','Query==dDocType \x3cmatches\x3e \x60Literature\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60at\x60  \x3cAND\x3e  xSubType \x3ccontains\x3e \x6026\x60  \x3cAND\x3e  xTargetAudienceOrVenue \x3ccontains\x3e \x606\x60','ShowRelResources==TRUE');
g_navNode_2_0_2_1=g_navNode_2_0_2.addNode('364','Berichte',ssUrlPrefix + 'IndividualInvestors/Literature/LegalDocuments/Reports/index.htm','Query==dDocType \x3cmatches\x3e \x60Literature\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60at\x60  \x3cAND\x3e \x28xSubType \x3ccontains\x3e \x603\x60 \x3cOR\x3e xSubType \x3ccontains\x3e \x6013\x60\x29 \x3cAND\x3e  xTargetAudienceOrVenue \x3ccontains\x3e \x606\x60','ShowRelResources==TRUE','SortFields==xDocumentNickname Asc');
g_navNode_2_0_2_2=g_navNode_2_0_2.addNode('365','Formulare',ssUrlPrefix + 'IndividualInvestors/Literature/LegalDocuments/Forms/index.htm','Query==dDocType \x3cmatches\x3e \x60Literature\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60at\x60  \x3cAND\x3e  xSubType \x3ccontains\x3e \x609\x60  \x3cAND\x3e  xTargetAudienceOrVenue \x3ccontains\x3e \x606\x60','ShowRelResources==TRUE','SortFields==xDocumentNickname Asc');
g_navNode_2_0_2_3=g_navNode_2_0_2.addNode('2140','Allgemeines',ssUrlPrefix + 'IndividualInvestors/Literature/LegalDocuments/gereral/index.htm','Query==dDocType \x3cmatches\x3e \x60Literature\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60at\x60  \x3cAND\x3e  xSubType \x3ccontains\x3e \x6018\x60  \x3cAND\x3e  xTargetAudienceOrVenue \x3ccontains\x3e \x606\x60','ShowRelResources==TRUE');
g_navNode_2_1=g_navNode_2.addNode('368','Fondscenter',ssUrlPrefix + 'IndividualInvestors/Fundcentre/index.htm');
g_navNode_2_1_0=g_navNode_2_1.addNode('4471','Preise',ssUrlPrefix + 'IndividualInvestors/Fundcentre/Prices/index.htm','RedirectURL==369','ShowThirdLevelNav==TRUE');
g_navNode_2_1_0_0=g_navNode_2_1_0.addNode('369','BGF',ssUrlPrefix + 'IndividualInvestors/Fundcentre/Prices/BGF/index.htm','AdditionalCSS==groups/globaltemplates/documents/web_asset/table_style_sheet.css,groups/globaltemplates/documents/web_asset/tabs.css','AdditionalJavaScript==groups/globaltemplates/documents/web_asset/table_scripts.js','NotComplianceProtected==TRUE','ShowThirdLevelNav==TRUE','secondaryUrlVariableField==region5','xmlid==FC_18325');
g_navNode_2_1_0_1=g_navNode_2_1_0.addNode('4422','BSF',ssUrlPrefix + 'IndividualInvestors/Fundcentre/Prices/BSF/index.htm','AdditionalCSS==groups/globaltemplates/documents/web_asset/table_style_sheet.css,groups/globaltemplates/documents/web_asset/tabs.css','AdditionalJavaScript==groups/globaltemplates/documents/web_asset/table_scripts.js','DoNotShowInNavigation==FALSE','FundCentreRedirectParams==tab\x3dproduct\x3d5000025/showKey\x3dtrue//','ShowThirdLevelNav==TRUE','secondaryUrlVariableField==region5','xmlid==FC_18325');
g_navNode_2_1_0_2=g_navNode_2_1_0.addNode('5788','iShares Exchange Traded Funds',ssUrlPrefix + 'IndividualInvestors/Fundcentre/Prices/iSharesExchangeTradedFunds/index.htm','ShowFundFinder==FALSE','ShowRelResources==FALSE','ShowThirdLevelNav==TRUE');
g_navNode_2_1_1=g_navNode_2_1.addNode('5248','Fondsverschmelzungen \x26 -schlie\xdfungen',ssUrlPrefix + 'IndividualInvestors/Fundcentre/FundPooling/index.htm','ShowRelResources==TRUE');
g_navNode_2_1_2=g_navNode_2_1.addNode('5249','Neue Fonds',ssUrlPrefix + 'IndividualInvestors/Fundcentre/NewFunds/index.htm','ShowRelResources==TRUE');
g_navNode_2_1_3=g_navNode_2_1.addNode('370','Service-Tools',ssUrlPrefix + 'IndividualInvestors/Fundcentre/Tools/index.htm');
g_navNode_2_1_3_0=g_navNode_2_1_3.addNode('2136','Fondssuche',ssUrlPrefix + 'IndividualInvestors/Fundcentre/Tools/FundFinder/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE','xmlid==FC_18325');
g_navNode_2_1_3_1=g_navNode_2_1_3.addNode('2135','Historische Preise',ssUrlPrefix + 'IndividualInvestors/Fundcentre/Tools/HistoricalPrices/index.htm','AdditionalCSS==groups/globaltemplates/documents/web_asset/calendar_css.css','AdditionalJavaScript==groups/globaltemplates/documents/web_asset/calendar_js.js,groups/globaltemplates/documents/web_asset/calendar_en_js.js,groups/globaltemplates/documents/web_asset/calendar_setup_js.js','xmlid==FC_18324');
g_navNode_2_1_3_2=g_navNode_2_1_3.addNode('2138','Performance Tool',ssUrlPrefix + 'IndividualInvestors/Fundcentre/Tools/PerformanceTool/index.htm','AdditionalCSS==groups/globaltemplates/documents/web_asset/calendar_css.css','AdditionalJavaScript==groups/globaltemplates/documents/web_asset/calendar_js.js,groups/globaltemplates/documents/web_asset/calendar_en_js.js,groups/globaltemplates/documents/web_asset/calendar_setup_js.js','TargetNodes==tool\x3d2138','xmlid==FC_18324');
g_navNode_2_1_3_3=g_navNode_2_1_3.addNode('2137','eValuator',ssUrlPrefix + 'IndividualInvestors/Fundcentre/Tools/eValuator/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE','xmlid==FC_18325');
g_navNode_2_5=g_navNode_2.addNode('379','Hilfe-Funktionen',ssUrlPrefix + 'IndividualInvestors/Support/index.htm');
g_navNode_2_5_0=g_navNode_2_5.addNode('385','Wir \xfcber uns',ssUrlPrefix + 'IndividualInvestors/Support/AboutUs/index.htm','RedirectURL==1168');
g_navNode_2_5_0_0=g_navNode_2_5_0.addNode('1168','\xdcbersicht',ssUrlPrefix + 'IndividualInvestors/Support/AboutUs/Overview/index.htm','DoNotShowInNavigation==FALSE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_5_0_3=g_navNode_2_5_0.addNode('388','Karriere',ssUrlPrefix + 'IndividualInvestors/Support/AboutUs/Careers/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_5_0_4=g_navNode_2_5_0.addNode('389','Kontakt',ssUrlPrefix + 'IndividualInvestors/Support/AboutUs/ContactUs/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_5_1=g_navNode_2_5.addNode('382','Fragen \x26 Antworten',ssUrlPrefix + 'IndividualInvestors/Support/FAQ/index.htm','ShowRelResources==TRUE');
g_navNode_2_5_2=g_navNode_2_5.addNode('383','W\xf6rterbuch',ssUrlPrefix + 'IndividualInvestors/Support/Glossary/index.htm','RedirectURL==1164');
g_navNode_2_5_2_0=g_navNode_2_5_2.addNode('1164','A-F',ssUrlPrefix + 'IndividualInvestors/Support/Glossary/A-F/index.htm','ShowRelResources==TRUE');
g_navNode_2_5_2_1=g_navNode_2_5_2.addNode('1165','G-L',ssUrlPrefix + 'IndividualInvestors/Support/Glossary/G-L/index.htm','ShowRelResources==TRUE');
g_navNode_2_5_2_2=g_navNode_2_5_2.addNode('1166','M-R',ssUrlPrefix + 'IndividualInvestors/Support/Glossary/M-R/index.htm','ShowRelResources==TRUE');
g_navNode_2_5_2_3=g_navNode_2_5_2.addNode('1167','S-Z',ssUrlPrefix + 'IndividualInvestors/Support/Glossary/S-Z/index.htm','ShowRelResources==TRUE');
g_navNode_2_5_3=g_navNode_2_5.addNode('367','Feiertage',ssUrlPrefix + 'IndividualInvestors/Support/Holidays/index.htm','ShowRelResources==TRUE');
g_navNode_2_5_5=g_navNode_2_5.addNode('380','Suche',ssUrlPrefix + 'IndividualInvestors/Support/Search/index.htm','Query==dSecurityGroup \x3cmatches\x3e \x60AustrianSite\x60','SearchNodeId==127','ShowRelResources==TRUE','WideColumnMiddle==TRUE','xmlid==FC_18325');
g_navNode_2_5_5_0=g_navNode_2_5_5.addNode('381','Hilfe',ssUrlPrefix + 'IndividualInvestors/Support/Search/SearchHelp/index.htm','ShowRelResources==TRUE');
g_navNode_2_6=g_navNode_2.addNode('499','News',ssUrlPrefix + 'IndividualInvestors/News/index.htm','DoNotShowInNavigation==TRUE','ShowRelResources==TRUE','WideColumnMiddle==TRUE');
g_navNode_3=g_navNode_Root.addNode('390','Finanzberater \x26 Banken',ssUrlPrefix + 'Intermediaries/index.htm','NotComplianceProtected==FALSE','ShowFundFinder==TRUE','SiloName==1','TargetNodes==eValuator\x3d2150,prices\x3d1179','xmlid==FC_18325');
g_navNode_3_0=g_navNode_3.addNode('1678','Fonds im Fokus',ssUrlPrefix + 'Intermediaries/FeaturedFunds/index.htm','RedirectURL==1680');
g_navNode_3_0_0=g_navNode_3_0.addNode('1680','BGF Global Allocation Fund',ssUrlPrefix + 'Intermediaries/FeaturedFunds/GlobalAllocation/index.htm','RedirectURL==2257');
g_navNode_3_0_0_0=g_navNode_3_0_0.addNode('2257','\xdcbersicht',ssUrlPrefix + 'Intermediaries/FeaturedFunds/GlobalAllocation/Overview/index.htm','ShowRelResources==TRUE');
g_navNode_3_0_0_1=g_navNode_3_0_0.addNode('2258','Einblick',ssUrlPrefix + 'Intermediaries/FeaturedFunds/GlobalAllocation/FundInsight/index.htm','ShowRelResources==TRUE');
g_navNode_3_0_0_2=g_navNode_3_0_0.addNode('2259','Literatur',ssUrlPrefix + 'Intermediaries/FeaturedFunds/GlobalAllocation/Literature/index.htm','ShowRelResources==TRUE');
g_navNode_3_0_0_3=g_navNode_3_0_0.addNode('2260','Auszeichnungen',ssUrlPrefix + 'Intermediaries/FeaturedFunds/GlobalAllocation/FundUpdates/index.htm','ShowRelResources==TRUE');
g_navNode_3_0_1=g_navNode_3_0.addNode('4176','Europ\xe4ische Aktien',ssUrlPrefix + 'Intermediaries/FeaturedFunds/EuropeanEquities/index.htm','RedirectURL==4177');
g_navNode_3_0_1_0=g_navNode_3_0_1.addNode('4177','\xdcbersicht ',ssUrlPrefix + 'Intermediaries/FeaturedFunds/EuropeanEquities/Overview/index.htm','ShowRelResources==TRUE');
g_navNode_3_0_1_1=g_navNode_3_0_1.addNode('4178','Einblick',ssUrlPrefix + 'Intermediaries/FeaturedFunds/EuropeanEquities/FundInsight/index.htm','ShowRelResources==TRUE');
g_navNode_3_0_1_2=g_navNode_3_0_1.addNode('4179','Literatur',ssUrlPrefix + 'Intermediaries/FeaturedFunds/EuropeanEquities/Literature/index.htm','ShowRelResources==TRUE');
g_navNode_3_0_2=g_navNode_3_0.addNode('4783','BSF European Absolute Return Strategies Fund',ssUrlPrefix + 'Intermediaries/FeaturedFunds/EuropeanAbsoluteReturnFund/index.htm','RedirectURL==4784');
g_navNode_3_0_2_0=g_navNode_3_0_2.addNode('4784','\xdcberblick',ssUrlPrefix + 'Intermediaries/FeaturedFunds/EuropeanAbsoluteReturnFund/Overview/index.htm','ShowRelResources==TRUE');
g_navNode_3_0_2_1=g_navNode_3_0_2.addNode('4785','Fonds-Einblick',ssUrlPrefix + 'Intermediaries/FeaturedFunds/EuropeanAbsoluteReturnFund/FundInsight/index.htm','ShowRelResources==TRUE');
g_navNode_3_0_2_2=g_navNode_3_0_2.addNode('4786','Literatur',ssUrlPrefix + 'Intermediaries/FeaturedFunds/EuropeanAbsoluteReturnFund/Literature/index.htm','ShowRelResources==TRUE');
g_navNode_3_0_2_3=g_navNode_3_0_2.addNode('4787','Wieso anlegen?',ssUrlPrefix + 'Intermediaries/FeaturedFunds/EuropeanAbsoluteReturnFund/WhyInvest/index.htm','ShowRelResources==TRUE');
g_navNode_3_0_3=g_navNode_3_0.addNode('4969','BGF Rohstoff-Fonds',ssUrlPrefix + 'Intermediaries/FeaturedFunds/NaturalResources/index.htm','DoNotShowInNavigation==FALSE','RedirectURL==4970');
g_navNode_3_0_3_0=g_navNode_3_0_3.addNode('4970','\xdcberblick',ssUrlPrefix + 'Intermediaries/FeaturedFunds/NaturalResources/Overview/index.htm','ShowRelResources==TRUE');
g_navNode_3_0_3_1=g_navNode_3_0_3.addNode('4971','Team',ssUrlPrefix + 'Intermediaries/FeaturedFunds/NaturalResources/Team/index.htm','ShowRelResources==TRUE');
g_navNode_3_0_3_2=g_navNode_3_0_3.addNode('4972','Fonds',ssUrlPrefix + 'Intermediaries/FeaturedFunds/NaturalResources/FundRange/index.htm','ShowRelResources==TRUE');
g_navNode_3_0_3_3=g_navNode_3_0_3.addNode('4973','Literatur',ssUrlPrefix + 'Intermediaries/FeaturedFunds/NaturalResources/Literature/index.htm','ShowRelResources==TRUE');
g_navNode_3_0_3_4=g_navNode_3_0_3.addNode('4974','Auszeichnungen',ssUrlPrefix + 'Intermediaries/FeaturedFunds/NaturalResources/Awards/index.htm','ShowRelResources==TRUE');
g_navNode_3_1=g_navNode_3.addNode('435','Literatur',ssUrlPrefix + 'Intermediaries/Literature/index.htm');
g_navNode_3_1_0=g_navNode_3_1.addNode('437','Factsheets',ssUrlPrefix + 'Intermediaries/Literature/Factsheets/index.htm','RedirectURL==439','ShowRelResources==TRUE');
g_navNode_3_1_0_0=g_navNode_3_1_0.addNode('439','Aktienfonds',ssUrlPrefix + 'Intermediaries/Literature/Factsheets/EquityFunds/index.htm','Query==dDocType \x3cmatches\x3e \x60Literature\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60at\x60  \x3cAND\x3e  xSubType \x3ccontains\x3e \x6015\x60  \x3cAND\x3e  xAssetType \x3ccontains\x3e \x604\x60  \x3cAND\x3e  xTargetAudienceOrVenue \x3ccontains\x3e \x601\x60  \x3cAND\x3e  \x3cNOT\x3e \x28xComments \x3cSUBSTRING\x3e \x60allianz\x60\x29','ShowRelResources==TRUE','SortFields==xDocumentNickname Asc','SubHeadingMetadataField==xRegion','SubHeadingView==Region');
g_navNode_3_1_0_1=g_navNode_3_1_0.addNode('438','Rentenfonds',ssUrlPrefix + 'Intermediaries/Literature/Factsheets/BondFunds/index.htm','Query==dDocType \x3cmatches\x3e \x60Literature\x60 \x3cAND\x3e xWebsites \x3ccontains\x3e \x60at\x60 \x3cAND\x3e xSubType \x3ccontains\x3e \x6015\x60 \x3cAND\x3e xAssetType \x3ccontains\x3e \x602\x60 \x3cAND\x3e xTargetAudienceOrVenue \x3ccontains\x3e \x601\x60  \x3cAND\x3e  \x3cNOT\x3e \x28xComments \x3cSUBSTRING\x3e \x60allianz\x60\x29','ShowRelResources==TRUE','SortFields==xDocumentNickname Asc','SubHeadingMetadataField==xCurrency','SubHeadingView==Currency');
g_navNode_3_1_0_2=g_navNode_3_1_0.addNode('440','Mischfonds',ssUrlPrefix + 'Intermediaries/Literature/Factsheets/MixedFunds/index.htm','Query==dDocType \x3cmatches\x3e \x60Literature\x60 \x3cAND\x3e xWebsites \x3ccontains\x3e \x60at\x60 \x3cAND\x3e  xSubType \x3ccontains\x3e \x6015\x60  \x3cAND\x3e  xAssetType \x3ccontains\x3e \x608\x60  \x3cAND\x3e  xTargetAudienceOrVenue \x3ccontains\x3e \x601\x60  \x3cAND\x3e  \x3cNOT\x3e \x28xComments \x3cSUBSTRING\x3e \x60allianz\x60\x29','ShowRelResources==TRUE','SortFields==xDocumentNickname Asc','SubHeadingMetadataField==xCurrency','SubHeadingView==Currency');
g_navNode_3_1_1=g_navNode_3_1.addNode('442','Brosch\xfcren \x26 Informationsmaterialien',ssUrlPrefix + 'Intermediaries/Literature/BrochuresAndSupportMaterial/index.htm','RedirectURL==461','ShowRelResources==TRUE');
g_navNode_3_1_1_0=g_navNode_3_1_1.addNode('461','Brosch\xfcren',ssUrlPrefix + 'Intermediaries/Literature/BrochuresAndSupportMaterial/Brouchures/index.htm','Query==dDocType \x3cmatches\x3e \x60Literature\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60at\x60  \x3cAND\x3e  xSubType \x3ccontains\x3e \x605\x60  \x3cAND\x3e  xTargetAudienceOrVenue \x3ccontains\x3e \x601\x60','ShowRelResources==TRUE','SortFields==xAppGenericInt1 Desc xDocumentNickname Asc');
g_navNode_3_1_1_1=g_navNode_3_1_1.addNode('462','Newsletter',ssUrlPrefix + 'Intermediaries/Literature/BrochuresAndSupportMaterial/Newsletters/index.htm','Query==dDocType \x3cmatches\x3e \x60Literature\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60at\x60  \x3cAND\x3e  xSubType \x3ccontains\x3e \x6017\x60  \x3cAND\x3e  xTargetAudienceOrVenue \x3ccontains\x3e \x601\x60','ShowRelResources==TRUE','SortFields==xDocumentDate Desc');
g_navNode_3_1_1_2=g_navNode_3_1_1.addNode('2129','Fondsflyer',ssUrlPrefix + 'Intermediaries/Literature/BrochuresAndSupportMaterial/fund-flyer/index.htm','Query==dDocType \x3cmatches\x3e \x60Literature\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60at\x60  \x3cAND\x3e  xSubType \x3ccontains\x3e \x6073\x60  \x3cAND\x3e  xTargetAudienceOrVenue \x3ccontains\x3e \x601\x60','ShowRelResources==TRUE','SortFields==xDocumentDate Desc');
g_navNode_3_1_1_4=g_navNode_3_1_1.addNode('464','Sonstiges',ssUrlPrefix + 'Intermediaries/Literature/BrochuresAndSupportMaterial/Other/index.htm','Query==dDocType \x3cmatches\x3e \x60Literature\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60at\x60  \x3cAND\x3e  \x28\x28xSubType \x3ccontains\x3e \x6025\x60\x29 \x3cOR\x3e \x28xSubType \x3ccontains\x3e \x60125\x60\x29 \x3cOR\x3e \x28xSubType \x3ccontains\x3e \x6076\x60\x29\x29  \x3cAND\x3e  xTargetAudienceOrVenue \x3ccontains\x3e \x601\x60','ShowRelResources==TRUE','SortFields==xDocumentNickname Asc');
g_navNode_3_1_2=g_navNode_3_1.addNode('466','Rechtliche Literatur',ssUrlPrefix + 'Intermediaries/Literature/LegalDocuments/index.htm','RedirectURL==467','ShowRelResources==TRUE');
g_navNode_3_1_2_0=g_navNode_3_1_2.addNode('467','Prospekte',ssUrlPrefix + 'Intermediaries/Literature/LegalDocuments/Prospectuses/index.htm','Query==dDocType \x3cmatches\x3e \x60Literature\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60at\x60  \x3cAND\x3e  \x28\x28xSubType \x3ccontains\x3e \x6026\x60\x29 \x3cOR\x3e \x28xSubType \x3ccontains\x3e \x6090\x60\x29\x29  \x3cAND\x3e  xTargetAudienceOrVenue \x3ccontains\x3e \x601\x60','ShowRelResources==TRUE','SortFields==xDocumentNickname Asc');
g_navNode_3_1_2_1=g_navNode_3_1_2.addNode('468','Berichte',ssUrlPrefix + 'Intermediaries/Literature/LegalDocuments/Reports/index.htm','Query==dDocType \x3cmatches\x3e \x60Literature\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60at\x60  \x3cAND\x3e \x28xSubType \x3ccontains\x3e \x603\x60 \x3cOR\x3e xSubType \x3ccontains\x3e \x6013\x60\x29 \x3cAND\x3e  xTargetAudienceOrVenue \x3ccontains\x3e \x601\x60','ShowRelResources==TRUE','SortFields==xDocumentNickname Asc');
g_navNode_3_1_2_2=g_navNode_3_1_2.addNode('469','Formulare',ssUrlPrefix + 'Intermediaries/Literature/LegalDocuments/Forms/index.htm','Query==dDocType \x3cmatches\x3e \x60Literature\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60at\x60  \x3cAND\x3e  xSubType \x3ccontains\x3e \x609\x60  \x3cAND\x3e  xTargetAudienceOrVenue \x3ccontains\x3e \x601\x60','ShowRelResources==TRUE','SortFields==xDocumentNickname Asc');
g_navNode_3_1_2_3=g_navNode_3_1_2.addNode('2128','Allgemeines',ssUrlPrefix + 'Intermediaries/Literature/LegalDocuments/general/index.htm','Query==dDocType \x3cmatches\x3e \x60Literature\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60at\x60  \x3cAND\x3e  xSubType \x3ccontains\x3e \x6018\x60  \x3cAND\x3e  xTargetAudienceOrVenue \x3ccontains\x3e \x601\x60','ShowRelResources==TRUE','WideColumnMiddle==FALSE');
g_navNode_3_2=g_navNode_3.addNode('472','Fondscenter',ssUrlPrefix + 'Intermediaries/FundCentre/index.htm');
g_navNode_3_2_0=g_navNode_3_2.addNode('1179','Preise',ssUrlPrefix + 'Intermediaries/FundCentre/Prices/index.htm','AdditionalCSS==groups/globaltemplates/documents/web_asset/table_style_sheet.css,groups/globaltemplates/documents/web_asset/tabs.css','AdditionalJavaScript==groups/globaltemplates/documents/web_asset/table_scripts.js','NotComplianceProtected==TRUE','RedirectURL==1640','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE','secondaryUrlVariableField==region5');
g_navNode_3_2_0_0=g_navNode_3_2_0.addNode('1640','BGF',ssUrlPrefix + 'Intermediaries/FundCentre/Prices/BGF/index.htm','FundCentreRedirectParams==tab\x3dproduct\x3d6/ukdistributorstatus\x3dN//','ShowThirdLevelNav==TRUE','secondaryUrlVariableField==region5','xmlid==FC_18325');
g_navNode_3_2_0_1=g_navNode_3_2_0.addNode('4423','BSF',ssUrlPrefix + 'Intermediaries/FundCentre/Prices/BSF/index.htm','AdditionalCSS==groups/globaltemplates/documents/web_asset/table_style_sheet.css,groups/globaltemplates/documents/web_asset/tabs.css','AdditionalJavaScript==groups/globaltemplates/documents/web_asset/table_scripts.js','DoNotShowInNavigation==FALSE','FundCentreRedirectParams==tab\x3dproduct\x3d5000025/ukdistributorstatus\x3dN//','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE','secondaryUrlVariableField==region5','xmlid==FC_18325');
g_navNode_3_2_0_2=g_navNode_3_2_0.addNode('4488','ICS',ssUrlPrefix + 'Intermediaries/FundCentre/Prices/ICS/index.htm','DoNotShowInNavigation==FALSE','FundCentreRedirectParams==product\x3d5000026//','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE','xmlid==FC_18325');
g_navNode_3_2_0_3=g_navNode_3_2_0.addNode('5789','iShares Exchange Traded Funds',ssUrlPrefix + 'Intermediaries/FundCentre/Prices/iSharesExchangeTradedFunds/index.htm','ShowThirdLevelNav==TRUE');
g_navNode_3_2_1=g_navNode_3_2.addNode('2141','Service-Tools',ssUrlPrefix + 'Intermediaries/FundCentre/Tools/index.htm');
g_navNode_3_2_1_0=g_navNode_3_2_1.addNode('2143','Fondssuche',ssUrlPrefix + 'Intermediaries/FundCentre/Tools/FundFinder/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE','xmlid==FC_18325');
g_navNode_3_2_1_1=g_navNode_3_2_1.addNode('2142','Historische Preise',ssUrlPrefix + 'Intermediaries/FundCentre/Tools/HistoricalPrices/index.htm','AdditionalCSS==groups/globaltemplates/documents/web_asset/calendar_css.css','AdditionalJavaScript==groups/globaltemplates/documents/web_asset/calendar_js.js,groups/globaltemplates/documents/web_asset/calendar_en_js.js,groups/globaltemplates/documents/web_asset/calendar_setup_js.js','xmlid==FC_18324');
g_navNode_3_2_1_2=g_navNode_3_2_1.addNode('2144','Performance Tool',ssUrlPrefix + 'Intermediaries/FundCentre/Tools/PerformanceTool/index.htm','AdditionalCSS==groups/globaltemplates/documents/web_asset/calendar_css.css','AdditionalJavaScript==groups/globaltemplates/documents/web_asset/calendar_js.js,groups/globaltemplates/documents/web_asset/calendar_en_js.js,groups/globaltemplates/documents/web_asset/calendar_setup_js.js','TargetNodes==tool\x3d2144','xmlid==FC_18324');
g_navNode_3_2_1_3=g_navNode_3_2_1.addNode('2145','eValuator',ssUrlPrefix + 'Intermediaries/FundCentre/Tools/eValuator/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_3_2_2=g_navNode_3_2.addNode('4566','Produkt\xfcbersicht',ssUrlPrefix + 'Intermediaries/FundCentre/InvestmentOptions/index.htm','RedirectURL==4567');
g_navNode_3_2_2_0=g_navNode_3_2_2.addNode('4567','BGF',ssUrlPrefix + 'Intermediaries/FundCentre/InvestmentOptions/BGF/index.htm','ShowThirdLevelNav==TRUE');
g_navNode_3_2_2_1=g_navNode_3_2_2.addNode('4568','BSF',ssUrlPrefix + 'Intermediaries/FundCentre/InvestmentOptions/BSF/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_3_2_2_2=g_navNode_3_2_2.addNode('4916','ICS',ssUrlPrefix + 'Intermediaries/FundCentre/InvestmentOptions/ICS/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_3_2_3=g_navNode_3_2.addNode('5142','Fondsverschmelzungen \x26 -schlie\xdfungen',ssUrlPrefix + 'Intermediaries/FundCentre/FundPooling/index.htm','DoNotShowInNavigation==FALSE','ShowRelResources==TRUE');
g_navNode_3_2_4=g_navNode_3_2.addNode('5250','Neue Fonds',ssUrlPrefix + 'Intermediaries/FundCentre/NewFunds/index.htm','ShowRelResources==TRUE');
g_navNode_3_3=g_navNode_3.addNode('473','Investment Einblicke',ssUrlPrefix + 'Intermediaries/InvestmentInsights/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_3_3_1=g_navNode_3_3.addNode('475','Marktinformationen',ssUrlPrefix + 'Intermediaries/InvestmentInsights/MarketViews/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_3_3_2=g_navNode_3_3.addNode('2607','Strategische Eckpunkte',ssUrlPrefix + 'Intermediaries/InvestmentInsights/StrategyFramework/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_3_3_4=g_navNode_3_3.addNode('2867','BlackRock Bullets',ssUrlPrefix + 'Intermediaries/InvestmentInsights/BlackRockBullets/index.htm','DoNotShowInNavigation==FALSE','ShowRelResources==TRUE');
g_navNode_3_4=g_navNode_3.addNode('2861','Multimedia',ssUrlPrefix + 'Intermediaries/Multimedia/index.htm','DoNotShowInNavigation==FALSE','RedirectURL==2862');
g_navNode_3_4_0=g_navNode_3_4.addNode('2862','Webcasts',ssUrlPrefix + 'Intermediaries/Multimedia/Webcasts/index.htm','ShowThirdLevelNav==TRUE');
g_navNode_3_4_0_0=g_navNode_3_4_0.addNode('4994','BGF World/NewEnergy',ssUrlPrefix + 'Intermediaries/Multimedia/Webcasts/BGFWorldNewEnergy/index.htm','DoNotShowInNavigation==TRUE','ShowRelResources==TRUE');
g_navNode_3_7=g_navNode_3.addNode('485','Hilfe-Funktionen',ssUrlPrefix + 'Intermediaries/Support/index.htm');
g_navNode_3_7_0=g_navNode_3_7.addNode('492','Wir \xfcber uns',ssUrlPrefix + 'Intermediaries/Support/AboutUs/index.htm','RedirectURL==1172');
g_navNode_3_7_0_0=g_navNode_3_7_0.addNode('1172','\xdcbersicht',ssUrlPrefix + 'Intermediaries/Support/AboutUs/Overview/index.htm','DoNotShowInNavigation==FALSE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_3_7_0_1=g_navNode_3_7_0.addNode('493','Investor Relations',ssUrlPrefix + 'Intermediaries/Support/AboutUs/InvestorRelations/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_3_7_0_2=g_navNode_3_7_0.addNode('494','Presseraum',ssUrlPrefix + 'Intermediaries/Support/AboutUs/Press/index.htm','RedirectURL==2666','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_3_7_0_2_0=g_navNode_3_7_0_2.addNode('2666','Aktuellste Pressemitteilungen',ssUrlPrefix + 'Intermediaries/Support/AboutUs/Press/Latest/index.htm','DoNotShowInNavigation==TRUE','QuarterToShow==0','Query==dDocType \x3cmatches\x3e \x60Literature\x60 \x3cAND\x3e xSubType \x3cmatches\x3e \\x2723\\x27 \x3cAND\x3e xWebsites \x3ccontains\x3e \x60at\x60','ShowNavInTabs==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_3_7_0_2_1=g_navNode_3_7_0_2.addNode('2623','Jan. - Mrz.',ssUrlPrefix + 'Intermediaries/Support/AboutUs/Press/Jan-Mar/index.htm','DoNotShowInNavigation==TRUE','QuarterToShow==1','Query==dDocType \x3cmatches\x3e \x60Literature\x60 \x3cAND\x3e xSubType \x3cmatches\x3e \\x2723\\x27 \x3cAND\x3e xWebsites \x3ccontains\x3e \x60at\x60','ShowNavInTabs==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_3_7_0_2_2=g_navNode_3_7_0_2.addNode('2624','Apr. - Jun.',ssUrlPrefix + 'Intermediaries/Support/AboutUs/Press/Apr-Jun/index.htm','QuarterToShow==2','Query==dDocType \x3cmatches\x3e \x60Literature\x60 \x3cAND\x3e xSubType \x3cmatches\x3e \\x2723\\x27 \x3cAND\x3e xWebsites \x3ccontains\x3e \x60at\x60','ShowNavInTabs==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_3_7_0_2_3=g_navNode_3_7_0_2.addNode('2625','Jul. - Sep.',ssUrlPrefix + 'Intermediaries/Support/AboutUs/Press/July-Sept/index.htm','QuarterToShow==3','Query==dDocType \x3cmatches\x3e \x60Literature\x60 \x3cAND\x3e xSubType \x3cmatches\x3e \\x2723\\x27 \x3cAND\x3e xWebsites \x3ccontains\x3e \x60at\x60','ShowFundFinder==FALSE','ShowNavInTabs==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_3_7_0_2_4=g_navNode_3_7_0_2.addNode('2626','Okt. - Dez.',ssUrlPrefix + 'Intermediaries/Support/AboutUs/Press/Oct-Dec/index.htm','QuarterToShow==4','Query==dDocType \x3cmatches\x3e \x60Literature\x60 \x3cAND\x3e xSubType \x3cmatches\x3e \\x2723\\x27 \x3cAND\x3e xWebsites \x3ccontains\x3e \x60at\x60','ShowNavInTabs==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_3_7_0_3=g_navNode_3_7_0.addNode('495','Karriere',ssUrlPrefix + 'Intermediaries/Support/AboutUs/Careers/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_3_7_0_4=g_navNode_3_7_0.addNode('496','Kontakt',ssUrlPrefix + 'Intermediaries/Support/AboutUs/ContactUs/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_3_7_1=g_navNode_3_7.addNode('488','Fragen \x26 Antworten',ssUrlPrefix + 'Intermediaries/Support/FAQ/index.htm','ShowRelResources==TRUE');
g_navNode_3_7_2=g_navNode_3_7.addNode('489','Wie investieren',ssUrlPrefix + 'Intermediaries/Support/HowToInvest/index.htm','ShowRelResources==TRUE');
g_navNode_3_7_3=g_navNode_3_7.addNode('490','W\xf6rterbuch',ssUrlPrefix + 'Intermediaries/Support/Glossary/index.htm','RedirectURL==2131','ShowRelResources==TRUE');
g_navNode_3_7_3_0=g_navNode_3_7_3.addNode('2131','A-F',ssUrlPrefix + 'Intermediaries/Support/Glossary/A-F/index.htm','ShowRelResources==TRUE');
g_navNode_3_7_3_1=g_navNode_3_7_3.addNode('2132','G-L',ssUrlPrefix + 'Intermediaries/Support/Glossary/G-L/index.htm','ShowRelResources==TRUE');
g_navNode_3_7_3_2=g_navNode_3_7_3.addNode('2632','M-R',ssUrlPrefix + 'Intermediaries/Support/Glossary/M-R/index.htm','ShowRelResources==TRUE');
g_navNode_3_7_3_3=g_navNode_3_7_3.addNode('2633','S-Z',ssUrlPrefix + 'Intermediaries/Support/Glossary/S-Z/index.htm','ShowRelResources==TRUE');
g_navNode_3_7_5=g_navNode_3_7.addNode('2687','Feiertage',ssUrlPrefix + 'Intermediaries/Support/Holidays/index.htm','ShowRelResources==TRUE');
g_navNode_3_7_6=g_navNode_3_7.addNode('486','Suche',ssUrlPrefix + 'Intermediaries/Support/Search/index.htm','SearchNodeId==127','ShowRelResources==TRUE','xmlid==FC_18325');
g_navNode_3_7_6_0=g_navNode_3_7_6.addNode('487','Hilfe',ssUrlPrefix + 'Intermediaries/Support/Search/SearchHelp/index.htm');
g_navNode_3_8=g_navNode_3.addNode('500','News',ssUrlPrefix + 'Intermediaries/News/index.htm','DoNotShowInNavigation==TRUE','ShowRelResources==TRUE','WideColumnMiddle==TRUE');
g_navNode_6=g_navNode_Root.addNode('4256','LocalContent',ssUrlPrefix + 'LocalContent/index.htm','DoNotShowInNavigation==TRUE','NotComplianceProtected==TRUE','StartDivID==LandingPage');
g_navNode_8=g_navNode_Root.addNode('4976','News',ssUrlPrefix + 'News/index.htm','DoNotShowInNavigation==TRUE','RedirectURL==4977');
g_navNode_8_0=g_navNode_8.addNode('4977','Press Release',ssUrlPrefix + 'News/PressRelease/index.htm','ShowRelResources==TRUE');
