<!--
// -----------------------------------------------------------------------------------------
// NavigateTreatySpecialty.js: Builds a right-hand navigation bar for Program Reinsurance page,
// based on variables
//           thisLanguage = "en"; // or "de"
//           thisNaviScreen = "publications"; // no match, no highlighting
// author: Jan Torres        21.08.2002 created for [Integrated Solutions and] Consulting
// update: Heinz Reutersberg 04.11.2003 gcr.com --> genre.com
// update: Daniel Reiberg    22.12.2004 bgcolor="#12569B"
// update: Heinz Reutersberg 08.08.2005 'class="URLMedium"' in sLinkOpen,
//                                      applied to KR Corporate Governance pages
// update: Heinz Reutersberg 04.10.2005 codebuilding part moved out to NavigateCommon.js
// update: Heinz Reutersberg 07.12.2007 applied to LifeHealthNA pages
// update: Heinz Reutersberg 19.12.2007 Text and link changes: Life Insurance Source Book,
//                                      GRLUSGroupLifeMarketSurveySummary-en.pdf
// update: Heinz Reutersberg 20.06.2008 GRLUSGroupLifeMarketSurveySummary-en.pdf removed
// update: Heinz Reutersberg 04.09.2008 GRLbrochure200805-en.pdf added
// -----------------------------------------------------------------------------------------

// isProduction flag controls caching option in navigation links
// true: '/page/0,,ref=' in production environment to support caching
// false: '/page/1,,ref=' while in development (disables caching)
var isProduction = true; // set to false while in development phase
 
// Definition of navigational item
function NaviItem(name, level, caption, link, style) {
  this.name = name;       // unique ID to match with thisNaviScreen
  this.level = level;     // indentation
  this.caption = caption; // what is displayed
  this.link = link;       // the href-URL
  this.style = style;     // additional css formatting - only font-weight supported ('bold' ...)
}

var N = new Array();

N["de"] = new Array(); // German NaviItems array
var NI = N["de"];

NI[NI.length] = new NaviItem("Pubs",        0, "Neue Publikationen", "", "bold");
NI[NI.length] = new NaviItem("360",         1, "We Can Help &#8211;<br>A 360° Perspective",             "http://www.genre.com/sharedfile/pdf/GRLbrochure200805-en.pdf");
NI[NI.length] = new NaviItem("CasMatters",  1, "2007 Critical Illness Insurance Market Survey Extract", "http://www.genre.com/sharedfile/pdf/GRLCIIMarketSurvey2007_Extract.pdf");
NI[NI.length] = new NaviItem("RiskIns",     1, "Risk Insights<br>(quarterly magazine)",                 "PublicationsRiskInsights_en-en");
NI[NI.length] = new NaviItem("LifeSource",  1, "Life Insurance Source Book",                            "http://www.jhaweb.com/central/public/sourcebook/main.aspx");
<!-- NI[NI.length] = new NaviItem("GrpLifeSurv", 1, "2007 U.S. Group Life Market Survey Summary",       "http://www.genre.com/sharedfile/pdf/GRLUSGroupLifeMarketSurveySummary-en.pdf"); -->
NI[NI.length] = new NaviItem("FUTGuide",    1, "2006 Financial Underwriting & Tax Guide<br>(Password-protected; contact Hans Vicente at 203 352 3183 for more information.)","http://www.genre.com/sharedfile/pdf/GRL%20Tax%20Guide%202006.pdf");

N["en"] = new Array(); // English NaviItems array
NI = N["en"];

NI[NI.length] = new NaviItem("Pubs",        0, "Recent Publications", "", "bold");
NI[NI.length] = new NaviItem("360",         1, "We Can Help &#8211;<br>A 360° Perspective",             "http://www.genre.com/sharedfile/pdf/GRLbrochure200805-en.pdf");
NI[NI.length] = new NaviItem("CasMatters",  1, "2007 Critical Illness Insurance Market Survey Extract", "http://www.genre.com/sharedfile/pdf/GRLCIIMarketSurvey2007_Extract.pdf");
NI[NI.length] = new NaviItem("RiskIns",     1, "Risk Insights<br>(quarterly magazine)",                 "PublicationsRiskInsights_en-en");
NI[NI.length] = new NaviItem("LifeSource",  1, "Life Insurance Source Book",                            "http://www.jhaweb.com/central/public/sourcebook/main.aspx");
<!-- NI[NI.length] = new NaviItem("GrpLifeSurv", 1, "2007 U.S. Group Life Market Survey Summary"        "http://www.genre.com/sharedfile/pdf/GRLUSGroupLifeMarketSurveySummary-en.pdf"); -->
NI[NI.length] = new NaviItem("FUTGuide",    1, "2006 Financial Underwriting & Tax Guide<br>(Password-protected; contact Hans Vicente at 203 352 3183 for more information.)","http://www.genre.com/sharedfile/pdf/GRL%20Tax%20Guide%202006.pdf");

// -- NO EDITING BEYOND THIS LINE -- PLEASE

//-->
