 // This data section will have to be maintained by the business/ZES
 var arrCountries = new Array();
 var iCnt = 0;

// for each country add a new array of the country name, main website url and country code (to match IP lookup)
 arrCountries[iCnt++] = new Array("Argentina", "http://www.zurich.com.ar/", "AR");
 arrCountries[iCnt++] = new Array("Australia", "http://www.zurich.com.au/", "AU");
 arrCountries[iCnt++] = new Array("Austria", "http://www.zurich.at/", "AT");
 arrCountries[iCnt++] = new Array("Belgium", "http://www.zurich.com/main/services/globalwebsites.htm?country=Belgium", "BE");
 arrCountries[iCnt++] = new Array("Bolivia", "http://www.boliviana-ciacruz.com/SitioNuevo/index.html", "BO");
 arrCountries[iCnt++] = new Array("Brazil", "http://www.zurich.com.br/", "BR");
 arrCountries[iCnt++] = new Array("Canada", "http://www.zurichcanada.com/can/en/home/welcome.htm", "CA");
 arrCountries[iCnt++] = new Array("Chile", "http://www.chilena.cl/newsite/home/index.htm", "CL");
 arrCountries[iCnt++] = new Array("China", "http://www.zurich.com.cn/chs/index.htm", "CN");
 arrCountries[iCnt++] = new Array("Denmark", "http://www.zurich.com/nordic/home/welcome.htm", "DK");
 arrCountries[iCnt++] = new Array("Finland", "http://www.zurich.com/nordic/home/welcome.htm", "FI");
 arrCountries[iCnt++] = new Array("France", "http://www.zurich.com/main/services/globalwebsites.htm?country=France", "FR");
 arrCountries[iCnt++] = new Array("Germany", "http://www.zurich.de/versicherung/home/welcome.htm", "DE");
 arrCountries[iCnt++] = new Array("Hong Kong", "http://www.zurich.com.hk/chi/index.htm", "HK");
 //arrCountries[iCnt++] = new Array("India", "http://uat.zurich.com/main/services/globalwebsites.htm?country=India", "IN");
 arrCountries[iCnt++] = new Array("Indonesia", "http://www.zurich.co.id/English/home/index.asp", "ID");
 arrCountries[iCnt++] = new Array("Ireland", "http://www.zurichinsurance.ie/", "IE");
 arrCountries[iCnt++] = new Array("Italy", "http://www.zurich.com/italia/home/home.htm", "IT");
 arrCountries[iCnt++] = new Array("Japan", "http://www.zurich.co.jp", "JP");
 arrCountries[iCnt++] = new Array("Kingdom of Bahrain", "http://www.zurich.com/international/me/home/welcome.htm", "BH");
 arrCountries[iCnt++] = new Array("Liechtenstein", "http://www.zurich.li/site6/de.html", "LI");
 arrCountries[iCnt++] = new Array("Mexico", "http://www.zurich.com.mx/", "MX");
 arrCountries[iCnt++] = new Array("Morocco", "http://www.zurich.com/Morocco/Accueil/Introduction.htm", "MA");
 arrCountries[iCnt++] = new Array("Netherlands", "http://www.zurich.com/main/services/globalwebsites.htm?country=Belgium", "NL");
 arrCountries[iCnt++] = new Array("New Zealand", "http://www.zurich.co.nz/", "NZ");
 arrCountries[iCnt++] = new Array("Norway", "http://www.zurich.com/nordic/home/welcome.htm", "NO");
 arrCountries[iCnt++] = new Array("Portugal", "http://www.zurich.com/portugal/home/home.htm", "PT");
 arrCountries[iCnt++] = new Array("Russia", "http://www.zurich.ru", "RU");
 arrCountries[iCnt++] = new Array("Singapore", "http://www.zurich.com/international/singapore/home/welcome.htm", "SG");
 arrCountries[iCnt++] = new Array("South Africa", "http://www.zurich.co.za", "ZA");
 arrCountries[iCnt++] = new Array("Spain", "http://www.zurich.es/", "ES");
 arrCountries[iCnt++] = new Array("Sweden", "http://www.zurich.com/nordic/home/welcome.htm", "SE");
 arrCountries[iCnt++] = new Array("Switzerland", "http://www.zurich.ch/site/de.html", "CH");
 arrCountries[iCnt++] = new Array("Taiwan", "http://www.zurich.com.tw", "TW");
 arrCountries[iCnt++] = new Array("Turkey", "http://www.zurichsigorta.com.tr/", "TR");
 arrCountries[iCnt++] = new Array("United Kingdom", "http://www.zurich.co.uk/home/Welcome/Introduction.htm", "UK");
 arrCountries[iCnt++] = new Array("United States", "http://www.zurichna.com/zna/home/welcome.htm", "US");
 arrCountries[iCnt++] = new Array("Venezuela", "http://www.zurich.com.ve", "VE");


// For each country, need an array of segments for the second drop down, 
// and an array of urls to match for the segments.
// The names of these arrays MUST fit the patterns:
// arr[Countryname from arrCountries(stripped of spaces and brackets)] and
// arr[Countryname from arrCountries(stripped of spaces and brackets)]Urls
// These names are case-sensitive so take care.
 var arrArgentina = new Array("an individual",
		"a small to mid-size business", 
		"a large corporation", 
		"a broker or agent");
 var arrArgentinaUrls = new Array("http://www.zurich.com.ar/AR_pyp_subhome.html",
		"http://www.zurich.com.ar/AR_pyp_pymes.htm",
		"http://www.zurich.com.ar/AR_empresas_productos.html", 
		"http://www.canalzurich.com.ar/");

 var arrAustralia = new Array("an individual",
		"a small to mid-size business", 
		"a large corporation", 
		"a broker or agent");
 var arrAustraliaUrls = new Array("http://www.zurich.com.au/zportal/cs/ContentServer?pagename=GroupSite/Page/ThreeColumn&cid=1046296790394",
		"http://www.zurich.com.au/zportal/cs/ContentServer?pagename=GroupSite/Page/ThreeColumn&cid=1026689341686",
		"http://www.zurich.com.au/zportal/cs/ContentServer?pagename=GroupSite/Page/ThreeColumn&cid=1195684694957", 
		"http://www.zurich.com.au/zportal/cs/ContentServer?pagename=GroupSite/Page/ThreeColumn&cid=1233198369360");

 var arrAustria = new Array("an individual",
		"a small to mid-size business", 
		"a large corporation", 
		"a broker or agent");
 var arrAustriaUrls = new Array("http://www.zurich.at/versicherungen",
		"http://www.zurich.at/firmenkunden",
		"http://www.zurich.com/corporatebusiness/solutionsandservices/solutionsandservices.htm", 
		"http://www.maklernetz.at/welcome/welcome/index.php");

 var arrBelgium = new Array(	"a large corporation");
 var arrBelgiumUrls = new Array("http://www.zurich.com/corporatebusiness/en-be/benelux.htm");

 var arrBolivia = new Array("an individual",
		"a small to mid-size business", 
		"a large corporation");
 var arrBoliviaUrls = new Array("http://www.boliviana-ciacruz.com/SitioNuevo/generales/",
		"http://www.boliviana-ciacruz.com/SitioNuevo/generales/index.html",
		"http://www.boliviana-ciacruz.com/SitioNuevo/generales/cen_corporate_business_1.html");

 var arrBrazil = new Array("an individual",
		"a small to mid-size business", 
		"a large corporation");
 var arrBrazilUrls = new Array("http://portal.minasbrasil.com.br/portalcsmb/wps/portal/home_portal",
		"http://www.zurich.com.br/ProdutoseServiços.html",
		"http://www.zurich.com.br/ProdutoseServiços.html");

 var arrCanada = new Array("a small to mid-size business", 
		"a large corporation", 
		"a broker or agent");
 var arrCanadaUrls = new Array("http://www.zurichcanada.com/can/en/targetmarkets/introduction.htm",
		"http://www.zurichcanada.com/can/en/targetmarkets/multinationalcompanies/aboutmultinationals.htm",
		"http://www.zurichcanada.com/can/en/home/welcome.htm");
 
 var arrChile = new Array("an individual",
		"a small to mid-size business", 
		"a large corporation", 
		"a broker or agent");
 var arrChileUrls = new Array("http://www.chilena.cl/newsite/home/index.htm",
		"http://www.chilena.cl/newsite/empresas/empresas_info.htm",
		"http://www.zurich.com/corporatebusiness/home/home.htm", 
		"http://www.chilena.cl/Agonline/Canales.htm");

 var arrChina= new Array("an individual",
		"a small to mid-size business", 
		"a large corporation");
 var arrChinaUrls = new Array("http://www.zurich.com.cn/chs/services.htm",
		"http://www.zurich.com.cn/chs/services.htm",
		"http://www.zurich.com.cn/chs/corporateglobalinsurancesolutions.htm");
 
 var arrDenmark = new Array("a large corporation");
 var arrDenmarkUrls = new Array("http://www.zurich.com/nordic/home/welcome.htm");

 var arrFinland = new Array("a large corporation");
 var arrFinlandUrls = new Array("http://www.zurich.com/nordic/home/welcome.htm");

 var arrFrance = new Array("a large corporation");
 var arrFranceUrls = new Array("http://www.zurich.com/corporatebusiness/fr-fr/france.htm");


 var arrGermany = new Array("an individual",
		"a small to mid-size business", 
		"a large corporation", 
		"a broker or agent");
 var arrGermanyUrls = new Array("http://www.zurich.de/versicherung/privatkunden/privatkunden.htm",
		"http://www.zurich.de/versicherung/firmenkunden/firmenkunden.htm",
		"http://www.zurich.de/versicherung/industriekunden/industriekunden.htm", 
		"https://www.maklerweb.de/");

 var arrHongKong = new Array("an individual",
		"a small to mid-size business", 
		"a large corporation");
 var arrHongKongUrls = new Array("http://www.zurich.com.hk/chi/insurancesolutions.htm",
		"http://www.zurich.com.hk/chi/is_companyinsurance_overview.htm",
		"http://www.zurich.com/corporatebusiness/home/home.htm");

 var arrIndonesia = new Array("an individual",
		"a small to mid-size business", 
		"a large corporation");
 var arrIndonesiaUrls = new Array("http://www.zurich.co.id/Indonesia/home/Personal/Welcome.asp",
		"http://www.zurich.co.id/Indonesia/home/Corporate/Welcome.asp",
		"http://www.zurich.co.id/english/home/Corporate/Welcome.asp");
 
 var arrIreland = new Array("an individual",
		"a small to mid-size business", 
		"a large corporation", 
		"a broker or agent");
 var arrIrelandUrls = new Array("http://www.zurichinsurance.ie/",
		"http://www.zurichinsurance.ie/business-insurance/default.aspx",
		"http://www.zurichinsurance.ie/business-insurance/default.aspx", 
		"https://www.zurichinsurance.ie/extranet/");

 var arrItaly = new Array("an individual",
		"a small to mid-size business", 
		"a large corporation");
 var arrItalyUrls = new Array("http://www.zurich.com/italia/pertestesso/pertestesso.htm",
		"http://www.zurich.com/italia/perlatuaazienda/perlatuaazienda.htm",
		"http://www.zurich.com/italia/perlatuaazienda/GlobalCorporateItalyZIP.htm");

 var arrJapan = new Array("an individual");
 var arrJapanUrls = new Array("http://www.zurich.co.jp/direct/auto/index.html");

 var arrKingdomofBahrain = new Array("an individual",
		"a small to mid-size business", 
		"a large corporation");
 var arrKingdomofBahrainUrls = new Array("http://www.zurich.com/international/me/home/welcome.htm",
		"http://www.zurich.com/international/me/home/welcome.htm",
		"http://www.zurich.com/international/me/home/welcome.htm");

var arrLiechtenstein = new Array("an individual",
		"a broker or agent");
 var arrLiechtensteinUrls = new Array("http://www.zurich.li/site6/de.html",
		"http://www.zurich.li/site6/de/partner.html");

 var arrMexico = new Array("an individual",
		"a small to mid-size business", 
		"a large corporation");
 var arrMexicoUrls = new Array("http://www.zurich.com.mx/",
		"http://www.zurich.com.mx/noticias.htm",
		"http://www.zurich.com.mx/masivos.htm");

 var arrMorocco = new Array("an individual",
		"a small to mid-size business", 
		"a large corporation", 
		"a broker or agent");
 var arrMoroccoUrls = new Array("http://www.zurich.com/Morocco/Particuliers/Particuliers.htm",
		"http://www.zurich.com/Morocco/Entreprises/Entreprises.htm",
		"http://www.zurich.com/Morocco/Entreprises/GrandesEntreprises.htm", 
		"http://www.zurich.com/Morocco/Services/EspaceIntermediaires.htm");

var arrNetherlands = new Array("a large corporation");
var arrNetherlandsUrls = new Array("http://www.zurich.com/corporatebusiness/en-be/benelux.htm");

var arrNewZealand = new Array("a small to mid-size business");
var arrNewZealandUrls = new Array("http://www.zurich.co.nz/zportal/cs/ContentServer?pagename=NZInternet/Page/ThreeColumn&cid=1169507298522");

var arrNorway = new Array("a large corporation");
var arrNorwayUrls = new Array("http://www.zurich.com/nordic/home/welcome.htm");

 var arrPortugal = new Array("an individual",
		"a small to mid-size business", 
		"a broker or agent");
 var arrPortugalUrls = new Array("http://www.zurich.com/portugal/particulares/particulares.htm",
		"http://www.zurich.com/portugal/empresas/empresas.htm",
		"https://www.zurich.com/portugal/portaldomediador/?login");

 var arrRussia = new Array("an individual",
		"a small to mid-size business", 
		"a large corporation");
 var arrRussiaUrls = new Array("http://www.zurich.ru/products/",
		"http://www.zurich.ru/corp/",
		"http://www.zurich.ru/corp/");

 var arrSingapore = new Array("an individual",
		"a broker or agent");
 var arrSingaporeUrls = new Array("http://www.zurich.com/international/singapore/home/welcome.htm",
		"https://online.zurichinternationalsolutions.com/");

 var arrSouthAfrica = new Array("an individual",
		"a small to mid-size business", 
		"a large corporation");
 var arrSouthAfricaUrls = new Array("http://www.zurich.co.za/products_services_personal_landing.php",
		"http://www.zurich.co.za/products_services_commercial.php",
		"http://www.zurich.co.za/products_services_commercial.php");

 var arrSpain = new Array("an individual",
		"a small to mid-size business", 
		"a large corporation", 
		"a broker or agent");
 var arrSpainUrls = new Array("http://www.zurich.es/seguro/seguros/segurosapersonas/segurosapersonas.htm",
		"http://www.zurich.es/seguro/seguros/segurosaempresas/pymes/pymes.htm",
		"http://www.zurich.es/seguro/seguros/segurosaempresas/grandeempresas/grandes-empresas.htm", 
		"https://www.zurich.es/seguro/areadeprofesionales/login.htm");

 var arrSweden = new Array("a large corporation");
 var arrSwedenUrls = new Array("http://www.zurich.com/nordic/home/welcome.htm");

var arrSwitzerland = new Array("an individual",
		"a small to mid-size business", 
		"a large corporation", 
		"a broker or agent");
 var arrSwitzerlandUrls = new Array("http://www.zurich.ch/site/de/priv.html",
		"http://www.zurich.ch/site/de/com.html",
		"http://www.zurich.ch/site/de/unternehmen.html", 
		"http://www.zurich.ch/brokerweb/de.html");

 var arrUnitedKingdom = new Array("an individual",
		"a small to mid-size business", 
		"a large corporation", 
		"a broker or agent");

 var arrUnitedKingdomUrls = new Array("http://www.zurich.co.uk/home/foryou/introduction.htm",
		"http://www.zurich.co.uk/home/foryourbusiness/introduction.htm",
		"http://www.zurich.co.uk/home/foryourbusiness/globalcorporate/listedproducts.htm",
		"http://www.zurich.co.uk/home/forintermediaries/introduction.htm");


 var arrUnitedStates = new Array("an individual",
		"a small to mid-size business", 
		"a large corporation");
 var arrUnitedStatesUrls = new Array("http://www.farmers.com/insurance_products.html",
		"http://www.zurichna.com/zna/home/welcome.htm",
		"http://www.zurich.com/corporatebusiness/home/home.htm");
 
 
 /* prototype
 var arrCnt = new Array("an individual",
		"a small to mid-size business", 
		"a large corporation", 
		"a broker or agent");
 var arrCntUrls = new Array("",
		"",
		"", 
		"");
*/

// And a series of pairs of arrays for the third drop down. 
// (one with Text for the dropdown, the second with the urls, matched on order).
// The names of these arrays MUST fit the patterns:
// arr[Countryname from arrCountries(stripped of spaces and brackets)]Text[position of segment array item] and
// arr[Countryname from arrCountries(stripped of spaces and brackets)]Url[position of segment array item]
// These names are case-sensitive so take care.

 // Argentina
 var arrArgentinaActionText1 = new Array("car insurance - contact",
	"car insurance - info",
	"car insurance - quote",
	"home insurance - info",
	"international life - contact",
	"life insurance - contact",
	"life insurance - info",
	"other products - info");

 var arrArgentinaActionUrl1 = new Array("http://www.zurich.com.ar/AR_contacto_form.asp",
	"http://www.zurich.com.ar/AR_pyp_auto.html",
	"http://www.zurich.com.ar/cotizadorauto/default.aspx?grupo=directos&inicio=true",
	"http://www.zurich.com.ar/AR_pyp_hogar.html",
	"http://www.zurich.com.ar/AR_contacto_form.asp",
	"http://www.zurich.com.ar/AR_contacto_form.asp",
	"http://www.zurich.com.ar/AR_pyp_vida.html",
	"http://www.zurich.com.ar/AR_pyp_subhome.html");

 var arrArgentinaActionText2 = new Array("contact info",
	"general information");

 var arrArgentinaActionUrl2 = new Array("http://www.zurich.com.ar/AR_contacto_form.asp",
	"http://www.zurich.com.ar/AR_pyp_pymes.html");

var arrArgentinaActionText3 = new Array("contact info",
	"general information");

 var arrArgentinaActionUrl3 = new Array("http://www.zurich.com.ar/AR_contacto_form.asp",
	"http://www.zurich.com.ar/AR_empresas_productos.html");

var arrArgentinaActionText4 = new Array("general information");

 var arrArgentinaActionUrl4 = new Array("http://www.canalzurich.com.ar/");

// Australia
 var arrAustraliaActionText1 = new Array("general information",
	"life insurance - adviser/broker",
	"life insurance - claim",
	"life insurance - info",
	"to find a broker/agent",
	"to make a claim");

 var arrAustraliaActionUrl1 = new Array("http://www.zurich.com.au/zportal/cs/ContentServer?pagename=GroupSite/Page/ThreeColumn&cid=1046296790394",
	"http://www.zurich.com.au/zportal/cs/ContentServer?pagename=GroupSite/Page/ThreeColumn&cid=1159692286192",
	"http://www.zurich.com.au/zportal/cs/ContentServer?pagename=GroupSite/Page/ThreeColumn&cid=1227750048223",
	"http://www.zurich.com.au/zportal/cs/ContentServer?pagename=GroupSite/Page/ThreeColumn&cid=1026689350379",
	"http://www.zurich.com.au/zportal/cs/ContentServer?pagename=GroupSite/Page/ThreeColumn&cid=1208651492653",
	"http://www.zurich.com.au/zportal/cs/ContentServer?pagename=GroupSite/Page/ThreeColumn&cid=1227750048231");

 var arrAustraliaActionText2 = new Array("fleet insurance",
	"general information",
	"online support/tools",
	"to call Zurich direct",
	"to find a broker/agent",
	"to make a claim");

 var arrAustraliaActionUrl2 = new Array("http://www.zurich.com.au/zportal/cs/ContentServer?pagename=GroupSite/Page/ThreeColumn&cid=1238291497776",
	"http://www.zurich.com.au/zportal/cs/ContentServer?pagename=GroupSite/Page/ThreeColumn&cid=1026689341686",
	"http://www.zurich.com.au/zportal/cs/ContentServer?pagename=GroupSite/Page/ThreeColumn&cid=1175555685221",
	"http://www.zurich.com.au/zportal/cs/ContentServer?pagename=GroupSite/Page/ThreeColumn&cid=997144309714",
	"http://www.zurich.com.au/zportal/cs/ContentServer?pagename=GroupSite/Page/ThreeColumn&cid=1208651490666",
	"http://www.zurich.com.au/zportal/cs/ContentServer?pagename=GroupSite/Page/ThreeColumn&cid=1160007184270");

var arrAustraliaActionText3 = new Array("contact info",
	"general information");

 var arrAustraliaActionUrl3 = new Array("http://www.zurich.com.au/zportal/cs/ContentServer?pagename=GroupSite/Page/ThreeColumn&cid=1195684695043",
	"http://www.zurich.com.au/zportal/cs/ContentServer?pagename=GroupSite/Page/ThreeColumn&cid=1195684694957");

var arrAustraliaActionText4 = new Array("contact info",
	"general information");

 var arrAustraliaActionUrl4 = new Array("http://www.zurich.com.au/zportal/cs/ContentServer?pagename=GroupSite/Page/ThreeColumn&cid=1233198373630",
	"http://www.zurich.com.au/zportal/cs/ContentServer?pagename=GroupSite/Page/ThreeColumn&cid=1233198369360");

// Austria
 var arrAustriaActionText1 = new Array("car insurance - agent/broker",
	"car insurance - claim",
	"car insurance - contact",
	"Car insurance - info",
	"car insurance - quote",
	"general information",
	"home insurance - agent/broker",
	"home insurance - claim",
	"home insurance - contact",
	"home insurance - info",
	"home insurance - quote",
	"life insurance - adviser/broker",
	"life insurance - claim",
	"life insurance - contact",
	"life insurance - info",
	"life insurance - quote",
	"other products - claim",
	"other products - contact",
	"other products - info");

 var arrAustriaActionUrl1 = new Array("http://www.zurich.at/service/wo_finden",
	"http://www.zurich.at/service/online_abwicklung/schadenmeldung",
	"http://www.zurich.at/kontakt",
	"http://www.zurich.at/versicherungen/kfz-versicherungen",
	"https://www.zurich-connect.at/berechnung/autoversicherung",
	"http://www.zurich.at/versicherungen",
	"http://www.zurich.at/service/wo_finden",
	"http://www.zurich.at/service/online_abwicklung/schadenmeldung",
	"http://www.zurich.at/kontakt",
	"http://www.zurich.at/versicherungen/wohnen",
	"https://www.zurich-connect.at/berechnung/haushaltsversicherung",
	"http://www.zurich.at/service/wo_finden",
	"http://www.zurich.at/service/servicecenter/details",
	"http://www.zurich.at/kontakt",
	"http://www.zurich.at/versicherungen/vorsorge_pension",
	"http://www.zurich-connect.at/versicherungen/pensionsvorsorge",
	"http://www.zurich.at/service/online_abwicklung/schadenmeldung",
	"http://www.zurich.at/service/servicecenter",
	"http://www.zurich.at/versicherungen");


 var arrAustriaActionText2 = new Array("contact info",
	"fleet insurance",
	"general information",
	"life & pension info",
	"to find a broker/agent",
	"to make a claim");

 var arrAustriaActionUrl2 = new Array("http://www.zurich.at/kontakt",
	"http://www.zurich.at/firmenkunden/firmen_kfz",
	"http://www.zurich.at/firmenkunden",
	"http://www.zurich.at/firmenkunden/personalvorsorge",
	"http://www.zurich.at/service/wo_finden",
	"http://www.zurich.at/service/online_abwicklung/schadenmeldung");

var arrAustriaActionText3 = new Array("life & pension info",
	"Solutions and services");

 var arrAustriaActionUrl3 = new Array("http://www.zurich.at/firmenkunden/personalvorsorge",
	"http://www.zurich.com/corporatebusiness/solutionsandservices/solutionsandservices.htm");

var arrAustriaActionText4 = new Array("general information");

 var arrAustriaActionUrl4 = new Array("http://www.maklernetz.at/welcome/welcome/index.php");


// Belgium - only large corp info
var arrBelgiumActionText1 = new Array("contact info",
	"International programs from Zurich",
	"Risk engineering services",
	"Solutions and services");

 var arrBelgiumActionUrl1 = new Array("http://www.zurich.com/corporatebusiness/en-be/benelux.htm",
	"http://www.zurich.com/corporatebusiness/solutionsandservices/multinationalinsuranceproposition.htm",
	"http://www.zurich.com/corporatebusiness/solutionsandservices/riskengineeringservices.htm",
	"http://www.zurich.com/corporatebusiness/home/home.htm");

// Bolivia - no broker info
var arrBoliviaActionText1 = new Array("Car insurance - info",
	"car insurance - quote",
	"contact info",
	"general information",
	"life insurance - info",
	"to make a claim");

 var arrBoliviaActionUrl1 = new Array("http://www.boliviana-ciacruz.com/SitioNuevo/generales/index_Seg_Automotores.html",
	"http://www.boliviana-ciacruz.com/SitioNuevo/formularios/form_cotiza_automotores.html",
	"http://www.boliviana-ciacruz.com/SitioNuevo/generales/index_1.html",
	"http://www.boliviana-ciacruz.com/SitioNuevo/generales/",
	"http://www.boliviana-ciacruz.com/SitioNuevo/personales/index_Seg_Indiv.html",
	"http://www.boliviana-ciacruz.com/SitioNuevo/formularios/form_cotiza_incendio.html");


var arrBoliviaActionText2 = new Array("contact info",
	"liability cover",
	"to make a claim");

 var arrBoliviaActionUrl2 = new Array("http://www.boliviana-ciacruz.com/SitioNuevo/formularios/form_contactenos.html",
	"http://www.boliviana-ciacruz.com/SitioNuevo/generales/index_Seg_Multiriesgo.html",
	"http://www.boliviana-ciacruz.com/SitioNuevo/formularios/form_cotiza_incendio.html");

var arrBoliviaActionText3 = new Array("contact info",
	"Solutions and services");

 var arrBoliviaActionUrl3 = new Array("http://www.boliviana-ciacruz.com/SitioNuevo/formularios/form_contactenos.html",
	"http://www.zurich.com/corporatebusiness/home/home.htm");

 
 // Brazil - no broker info
var arrBrazilActionText1 = new Array("car insurance - agent/broker",
	"car insurance - contact",
	"Car insurance - info",
	"home insurance - agent/broker",
	"home insurance - contact",
	"home insurance - info",
	"life insurance - adviser/broker",
	"life insurance - contact",
	"life insurance - info",
	"other products - broker",
	"other products - info");

 var arrBrazilActionUrl1 = new Array("http://portal.minasbrasil.com.br/portalcsmb/wps/portal/csmb/espacoAberto/enderecosCorretores",
	"http://portal.minasbrasil.com.br/wps/portal/!ut/p/c1/pY_NDoIwEISfxSfYpZQWjyBQCEoJUgQuhBhCMPx4MCa-vfAAgImzxy8zOwMlzDfW766tX9001j3kULJKxgZeQqGheU1tJEmWuBJjIg195gWrKPNP3NN1FIFxRJJKZYWZwFm_uCNJlEcDTTOZqyFhPrXPWYDC0f_6zXfct2XrdveFb7VbOK7Iwp18vs0FhcifhgYKKPnqDodD0Tdtff_Ac1Aqxy54UHX4AlegLK0!/dl2/d1/L0lJSklna21BL0lKakFBTXlBQkVSQ0pBISEvWUZOQTFOSTUwLTVGd0EhIS83X09QNTBNS0cxMDhTVEIwMlJWUkVPMFAyT0Q3L3dvX19fMjc!/?PC_7_OP50MKG108STB02RVREO0P2OD7_WCM_CONTEXT=http://wcm.minasbrasil.com.br/wps/wcm/connect/internet/Minas+Brasil+Seguradora/node+espacoAberto/produtos/minasBrasilAutomovel/comoContratar/",
	"http://portal.minasbrasil.com.br/wps/portal/!ut/p/c1/pY_NDoIwEISfxSfYpZQWjyBQCEoJUgQuhBhCMPx4MCa-vfAAgImzxy8zOwMlzDfW766tX9001j3kULJKxgZeQqGheU1tJEmWuBJjIg195gWrKPNP3NN1FIFxRJJKZYWZwFm_uCNJlEcDTTOZqyFhPrXPWYDC0f_6zXfct2XrdveFb7VbOK7Iwp18vs0FhcifhgYKKPnqDodD0Tdtff_Ac1Aqxy54UHX4AlegLK0!/dl2/d1/L0lJSklna21BL0lKakFBTXlBQkVSQ0pBISEvWUZOQTFOSTUwLTVGd0EhIS83X09QNTBNS0cxMDhTVEIwMlJWUkVPMFAyT0Q3L0ZrX19fMTc!/?PC_7_OP50MKG108STB02RVREO0P2OD7_WCM_CONTEXT=http://wcm.minasbrasil.com.br/wps/wcm/connect/internet/Minas+Brasil+Seguradora/node+espacoAberto/produtos/minasBrasilAutomovel/informacoesGerais/",
	"http://portal.minasbrasil.com.br/portalcsmb/wps/portal/csmb/espacoAberto/enderecosCorretores",
	"https://portal.minasbrasil.com.br/wps/portal/!ut/p/c1/pY_NDoIwEISfxSfYpZQWjyBQCEoJUgQuhBhCMPx4MCa-vfAAgImzxy8zOwMlzDfW766tX9001j3kULJKxgZeQqGheU1tJEmWuBJjIg195gWrKPNP3NN1FIFxRJJKZYWZwFm_uCNJlEcDTTOZqyFhPrXPWYDC0f_6zXfct2XrdveFb7VbOK7Iwp18vs0FhcifhgYKKPnqDodD0Tdtff_Ac1Aqxy54UHX4AlegLK0!/dl2/d1/L0lJSklna21BL0lKakFBTXlBQkVSQ0pBISEvWUZOQTFOSTUwLTVGd0EhIS83X09QNTBNS0cxMDhTVEIwMlJWUkVPMFAyT0Q3L1hsX19fNTY!/?PC_7_OP50MKG108STB02RVREO0P2OD7_WCM_CONTEXT=http://wcm.minasbrasil.com.br/wps/wcm/connect/internet/Minas+Brasil+Seguradora/node+espacoAberto/produtos/seguroImobiliario/comoContratar/",
	"https://portal.minasbrasil.com.br/wps/portal/!ut/p/c1/pY_NDoIwEISfxSfY7Q8Fj0WhNCglSBG5EA7GYAQ8GJ9feACLiTPHL7MzCw3MHrt3f-te_TR2D6ihEa3JPTymimBwKkOkRVVEBnNqPDbzi2i5SHZ-zBgq7W2RlsbKtFI465d0ZqiNuSYkEBFBKhIeHiqNas_-6vZX0uflV_f2hbvWLRy_SOLKfd_NFYcsmYYrPAdra-z1ncvNB3jragU!/dl2/d1/L0lDU0lKSWdrbUEhIS9JRFJBQUlpQ2dBek15cXchL1lCSkoxTkExTkk1MC01RncvN19PUDUwTUtHMTA4U1RCMDJSVlJFTzBQMk9ENy9xbF9fXzQ2/?PC_7_OP50MKG108STB02RVREO0P2OD7_WCM_CONTEXT=http://wcm.minasbrasil.com.br/wps/wcm/connect/internet/Minas+Brasil+Seguradora/node+espacoAberto/produtos/seguroImobiliario/informacoesGerais/",
	"http://portal.minasbrasil.com.br/portalcsmb/wps/portal/csmb/espacoAberto/enderecosCorretores",
	"http://portal.minasbrasil.com.br/wps/portal/!ut/p/c1/pY_BCoJAEIYfaWbXdbeOmrorlauWpl5EQkpI6xBBb5_eIlKD_jl-fDPzQwH9dNWjOVX35tpVF8ig4KUOTdyuJcHFbm8jjdPY1RhSbRo9z3nJuFoJzzBQ-uYS6V4n1jqV2OcXO9A08ZhPyIK7BClXzN6kPkrH-Ou2mLEPQ9c3H1Uoep8vnVQxghH94F-6DXzq-4HjSCyc2S-muWQQqGtbQw6FGO3pCMgv9ak6PuHWJkmGjd-E5-gFuUadlw!!/dl2/d1/L0lJSklna21BL0lKakFBTXlBQkVSQ0pBISEvWUZOQTFOSTUwLTVGd0EhIS83X09QNTBNS0cxMDhTVEIwMlJWUkVPMFAyT0Q3L001cl9fMTY1/?PC_7_OP50MKG108STB02RVREO0P2OD7_WCM_CONTEXT=http://wcm.minasbrasil.com.br/wps/wcm/connect/internet/Minas+Brasil+Seguradora/node+espacoAberto/produtos/zurichVivaMais/comoContratar/",
	"http://portal.minasbrasil.com.br/wps/portal/!ut/p/c1/pY_BCoJAEIYfaWbXdbeOmrorlauWpl5EQkpI6xBBb5_eIlKD_jl-fDPzQwH9dNWjOVX35tpVF8ig4KUOTdyuJcHFbm8jjdPY1RhSbRo9z3nJuFoJzzBQ-uYS6V4n1jqV2OcXO9A08ZhPyIK7BClXzN6kPkrH-Ou2mLEPQ9c3H1Uoep8vnVQxghH94F-6DXzq-4HjSCyc2S-muWQQqGtbQw6FGO3pCMgv9ak6PuHWJkmGjd-E5-gFuUadlw!!/dl2/d1/L0lJSklna21BL0lKakFBTXlBQkVSQ0pBISEvWUZOQTFOSTUwLTVGd0EhIS83X09QNTBNS0cxMDhTVEIwMlJWUkVPMFAyT0Q3L3o1cl9fMTU1/?PC_7_OP50MKG108STB02RVREO0P2OD7_WCM_CONTEXT=http://wcm.minasbrasil.com.br/wps/wcm/connect/internet/Minas+Brasil+Seguradora/node+espacoAberto/produtos/zurichVivaMais/informacoesGerais/",
	"http://portal.minasbrasil.com.br/portalcsmb/wps/portal/csmb/espacoAberto/enderecosCorretores",
	"http://portal.minasbrasil.com.br/wps/portal/!ut/p/c1/04_SB8K8xLLM9MSSzPy8xBz9CP0os3gTMw9nczdjYwMDjwBzA6MQM0uXMA8TQwMzE6B8JJK8u6epJVDeP9TRO8zdAAiI0e3nbxTqZuJpaGhh5mpoYGTmYeLkE-Zp4O5iTEB3OMi1uFUEGqHJY3EdSB6f_SB5AxzA0UDfzyM_N1W_IDc0wiDTUxcAyOIrjA!!/dl2/d1/L2dJQSEvUUt3QS9ZQnB3LzZfNDZIQzdGMzMwR0k1OTAyVE9VQUtWRzAwRzQ!/");

var arrBrazilActionText2 = new Array("contact info",
	"general information",
	"liability cover");

 var arrBrazilActionUrl2 = new Array("http://www.zurich.com.br/filiais.html",
	"http://www.zurich.com.br/ProdutoseServiços.html",
	"http://www.zurich.com.br/RCG.html");

var arrBrazilActionText3 = new Array("more information",
	"Solutions and services");

 var arrBrazilActionUrl3 = new Array("http://www.zurich.com.br/ProdutoseServiços.html",
	"http://www.zurich.com/corporatebusiness/home/home.htm");

// Canada - no individual info
 var arrCanadaActionText1 = new Array("casualty",
	"contact info",
	"fleet insurance",
	"general information",
	"to make a claim");

 var arrCanadaActionUrl1 = new Array("http://www.zurichcanada.com/NR/exeres/36304DAD-B123-406B-A5BB-A05C08B6160C.htm",
	"http://www.zurichcanada.com/can/en/solutions/contactus.htm",
	"http://www.zurichcanada.com/can/en/solutions/automobile/Individualauto.htm",
	"http://www.zurichcanada.com/NR/exeres/36304DAD-B123-406B-A5BB-A05C08B6160C.htm",
	"http://www.zurichcanada.com/can/en/claims/reportaclaim/reportaclaim.htm");

 var arrCanadaActionText2 = new Array("contacts",
	"more information",
	"Risk engineering services",
	"to make a claim",
	"Zurich virtual literature rack");

 var arrCanadaActionUrl2 = new Array("http://www.zurichcanada.com/can/en/targetmarkets/contactus.htm",
	"http://www.zurichcanada.com/can/en/targetmarkets/multinationalcompanies/aboutmultinationals.htm",
	"http://www.zurichcanada.com/can/en/riskservices/riskservices/aboutriskservices.htm",
	"http://www.zurichcanada.com/can/en/claims/introduction/valueproposition.htm",
	"http://www.zurichvlr.com/signin.asp");

 var arrCanadaActionText3 = new Array("general information");

 var arrCanadaActionUrl3 = new Array("http://www.zurichcanada.com/can/en/home/welcome.htm");

// Chile
 var arrChileActionText1 = new Array("car insurance - contact",
	"Car insurance - info",
	"home insurance - contact",
	"home insurance - info",
	"home insurance - quote",
	"life insurance - info");

 var arrChileActionUrl1 = new Array("http://www.chilena.cl/newsite/ayuda/contacto.htm",
	"http://www.chilena.cl/newsite/personas/Auto_chilena_nuevos_planes.html",
	"http://www.chilena.cl/newsite/ayuda/contacto.htm",
	"http://www.chilena.cl/newsite/personas/Hogar_CasaNueva.html",
	"http://www.chilena.cl/Central_Cotiz/Hogar_01.htm",
	"http://www.chilena.cl/newsite/Personas/Vida_Proteccion_Familiar.html");

 var arrChileActionText2 = new Array("casualty",
	"contact info",
	"general information",
	"life & pension info",
	"online support/tools");

 var arrChileActionUrl2 = new Array("http://www.chilena.cl/newsite/empresas/empresas_Resp_Civil.htm",
	"http://www.chilena.cl/newsite/ayuda/contacto.htm",
	"http://www.chilena.cl/newsite/empresas/empresas_info.htm",
	"http://www.chilena.cl/newsite/empresas/Col_informacion.htm",
	"http://www.chilena.cl/clientesonline/index.htm");

 var arrChileActionText3 = new Array("Solutions and services");

 var arrChileActionUrl3 = new Array("http://www.zurich.com/corporatebusiness/home/home.htm");

 var arrChileActionText4 = new Array("online support/tools");

 var arrChileActionUrl4 = new Array("http://www.chilena.cl/Agonline/Canales.htm");

// China - no broker info
 var arrChinaActionText1 = new Array("contact info",
	"general information",
	"home insurance - info",
	"to make a claim");

 var arrChinaActionUrl1 = new Array("http://www.zurich.com.cn/chs/contactus.htm",
	"http://www.zurich.com.cn/chs/services.htm",
	"http://www.zurich.com.cn/chs/insuranceproducts.htm",
	"http://www.zurich.com.cn/chs/lpservice.htm");

 var arrChinaActionText2 = new Array("contact info",
	"general information",
	"more information",
	"to make a claim");

 var arrChinaActionUrl2 = new Array("http://www.zurich.com.cn/chs/contactus.htm",
	"http://www.zurich.com.cn/chs/services.htm",
	"http://www.zurich.com.cn/chs/services.htm",
	"http://www.zurich.com.cn/chs/lpservice.htm");


 var arrChinaActionText3 = new Array("contact info",
	"general information",
	"Risk engineering services",
	"to make a claim");

 var arrChinaActionUrl3 = new Array("http://www.zurich.com.cn/chs/contactus.htm",
	"http://www.zurich.com.cn/chs/corporateglobalinsurancesolutions.htm",
	"http://www.zurich.com.cn/chs/riskmanagement.htm",
	"http://www.zurich.com.cn/chs/lpservice.htm");

// Denmark - only large corp info
var arrDenmarkActionText1 = new Array("contact info",
	"International programs from Zurich",
	"Risk engineering services",
	"Solutions and services",
	"to make a claim");

 var arrDenmarkActionUrl1 = new Array("http://www.zurich.com/nordic/contacts/maps/Contacts-Maps.htm",
	"http://www.zurich.com/nordic/solutions/Solutions-MIP.htm",
	"http://www.zurich.com/nordic/riskengineering/introduction.htm",
	"http://www.zurich.com/nordic/solutions/introduction.htm",
	"http://www.zurich.com/nordic/claims/introduction.htm");


// Finland - only large corp info
var arrFinlandActionText1 = new Array("contact info",
	"International programs from Zurich",
	"Risk engineering services",
	"Solutions and services",
	"to make a claim");

 var arrFinlandActionUrl1 = new Array("http://www.zurich.com/nordic/contacts/maps/Contacts-Maps.htm",
	"http://www.zurich.com/nordic/solutions/Solutions-MIP.htm",
	"http://www.zurich.com/nordic/riskengineering/introduction.htm",
	"http://www.zurich.com/nordic/solutions/introduction.htm",
	"http://www.zurich.com/nordic/claims/introduction.htm");

// France - only large corp info
var arrFranceActionText1 = new Array("general information");

 var arrFranceActionUrl1 = new Array("http://www.zurich.com/corporatebusiness/fr-fr/france.htm");

// Germany - no broker info
var arrGermanyActionText1 = new Array("car insurance - agent/broker",
	"car insurance - claim",
	"car insurance - contact",
	"Car insurance - info",
	"car insurance - quote",
	"home insurance - agent/broker",
	"home insurance - claim",
	"home insurance - contact",
	"home insurance - info",
	"home insurance - quote",
	"life insurance - adviser/broker",
	"life insurance - claim",
	"life insurance - contact",
	"life insurance - info",
	"life insurance - quote",
	"other products - claim",
	"other products - contact",
	"other products - info");

 var arrGermanyActionUrl1 = new Array("http://www.zurich.de/versicherung/ihrfachmann/ihrfachmann.htm",
	"http://www.zurich.de/versicherung/service/schaden-service/schaden-online-melden/schaden-online-melden.htm",
	"http://www.zurich.de/versicherung/ueberuns/kontakt.htm",
	"http://www.zurich.de/versicherung/privatkunden/autoversicherung/autoversicherung.htm",
	"http://www.zurich-connect.de/connect/direkt/versicherungen/autoversicherungen/autoversicherung.htm",
	"http://www.zurich.de/versicherung/ihrfachmann/ihrfachmann.htm",
	"http://www.zurich.de/versicherung/service/schaden-service/schaden-online-melden/schaden-online-melden.htm",
	"http://www.zurich.de/versicherung/ueberuns/kontakt.htm",
	"http://www.zurich.de/versicherung/privatkunden/haus-wohnung-versicherung/haus-wohnung-versicherung.htm",
	"http://www.zurich-connect.de/connect/direkt/versicherungen/hausrat/hausrat.htm",
	"http://www.zurich.de/versicherung/ihrfachmann/ihrfachmann.htm",
	"http://www.zurich.de/versicherung/service/service-kontakt/service-kontakt.htm",
	"http://www.zurich.de/versicherung/ueberuns/kontakt.htm",
	"http://www.zurich.de/versicherung/privatkunden/fondsgebundene-versicherungen/fondsgebundene-versicherungen.htm",
	"http://www.zurich.de/versicherung/service/service-kontakt/service-kontakt.htm",
	"http://www.zurich.de/versicherung/ueberuns/kontakt.htm",
	"http://www.zurich.de/versicherung/privatkunden/privatkunden.htm");


var arrGermanyActionText2 = new Array("casualty",
	"contact info",
	"fleet insurance",
	"general information",
	"life & pension info",
	"to find a broker/agent");

 var arrGermanyActionUrl2 = new Array("http://www.zurich.de/versicherung/firmenkunden/haftpflichtversicherung/haftpflichtversicherung-firmenkunden.htm",
	"http://www.zurich.de/versicherung/service/service-kontakt/service-kontakt.htm",
	"http://www.zurich.de/versicherung/firmenkunden/kfz-versicherung/kfz-versicherung.htm",
	"http://www.zurich.de/versicherung/firmenkunden/firmenkunden.htm",
	"http://www.zurich.de/versicherung/firmenkunden/betriebliche-altersvorsorge/betriebliche-altersvorsorge.htm",
	"http://www.zurich.de/versicherung/ihrfachmann/ihrfachmann.htm");


var arrGermanyActionText3 = new Array("contact info",
	"general information",
	"International programs from Zurich",
	"life & pension info",
	"Risk engineering services",
	"Solutions and services");

 var arrGermanyActionUrl3 = new Array("http://www.zurich.de/versicherung/industriekunden/industriekunden.htm",
	"http://www.zurich.de/versicherung/industriekunden/industriekunden.htm",
	"http://www.zurich.com/corporatebusiness/solutionsandservices/multinationalinsuranceproposition.htm",
	"http://www.zurich.de/versicherung/firmenkunden/betriebliche-altersvorsorge/betriebliche-altersvorsorge.htm",
	"http://www.zurich.com/corporatebusiness/solutionsandservices/riskengineeringservices.htm",
	"http://www.zurich.com/corporatebusiness/solutionsandservices/solutionsandservices.htm");

// HongKong - no broker info
var arrHongKongActionText1 = new Array("car insurance - claim",
	"car insurance - contact",
	"Car insurance - info",
	"home insurance - claim",
	"home insurance - contact",
	"home insurance - info",
	"international life - info",
	"international life - contact",
	"life insurance - claim",
	"life insurance - contact",
	"life insurance - info",
	"other products - claim",
	"other products - contact",
	"other products - info");

 var arrHongKongActionUrl1 = new Array("http://www.zurich.com.hk/chi/cs_nonlifepolicyservices_claims.htm",
	"http://www.zurich.com.hk/chi/cs_contact.htm",
	"http://www.zurich.com.hk/chi/is_generalinsurance_motor.htm",
	"http://www.zurich.com.hk/chi/cs_nonlifepolicyservices_claims.htm",
	"http://www.zurich.com.hk/chi/cs_contact.htm",
	"http://www.zurich.com.hk/chi/is_generalinsurance_homecontents.htm",
	"http://www.zurichhkfunds.com/template/site.asp",
	"http://www.zurichhkfunds.com/template/site.asp?nid=5757&did=12078&onid=5757&spn=no",
	"http://www.zurich.com.hk/chi/cs_lifepolicyservices_claims.htm",
	"http://www.zurich.com.hk/chi/cs_lifepolicyservices.htm",
	"http://www.zurich.com.hk/chi/is_lifeinsurance_overview.htm",
	"http://www.zurich.com.hk/chi/cs_nonlifepolicyservices_claims.htm",
	"http://www.zurich.com.hk/chi/cs_contact.htm",
	"http://www.zurich.com.hk/eng/is_generalinsurance_overview.htm");


var arrHongKongActionText2 = new Array("casualty",
	"contact info",
	"life & pension info",
	"more information",
	"to make a claim");

 var arrHongKongActionUrl2 = new Array("http://www.zurich.com.hk/chi/is_companyinsurance_proliability.htm",
	"http://www.zurich.com.hk/chi/cs_contact_generalenquiries.asp",
	"http://www.zurich.com.hk/chi/is_companyinsurance_grouplife.htm",
	"http://www.zurich.com.hk/chi/is_companyinsurance_overview.htm",
	"http://www.zurich.com.hk/chi/cs_nonlifepolicyservices_claims.htm");


var arrHongKongActionText3 = new Array("general information",
	"Solutions and services");

 var arrHongKongActionUrl3 = new Array("http://www.zurich.com/corporatebusiness/home/home.htm",
	"http://www.zurich.com/corporatebusiness/solutionsandservices/solutionsandservices.htm");

var arrIndonesiaActionText1 = new Array("car insurance - contact",
	"Car insurance - info",
	"home insurance - contact",
	"home insurance - info",
	"life insurance - contact",
	"life insurance - info",
	"other products - info",
	"to make a claim");

 var arrIndonesiaActionUrl1 = new Array("http://www.zurich.co.id/Indonesia/home/Others/Contact.asp",
	"http://www.zurich.co.id/Indonesia/home/Personal/PersonalCar.asp",
	"http://www.zurich.co.id/Indonesia/home/Others/Contact.asp",
	"http://www.zurich.co.id/Indonesia/home/Personal/PersonalHouse.asp",
	"http://www.zurich.co.id/Indonesia/home/Others/Contact.asp",
	"http://www.zurich.co.id/Indonesia/home/Personal/PersonalAccident.asp",
	"http://www.zurich.co.id/Indonesia/home/Personal/Welcome.asp",
	"http://www.zurich.co.id/Indonesia/home/Others/Contact.asp");

var arrIndonesiaActionText2 = new Array("casualty",
	"contact info",
	"general information");

 var arrIndonesiaActionUrl2 = new Array("http://www.zurich.co.id/Indonesia/home/Corporate/Product3.asp",
	"http://www.zurich.co.id/Indonesia/home/Others/Contact.asp",
	"http://www.zurich.co.id/Indonesia/home/Corporate/Welcome.asp");

var arrIndonesiaActionText3 = new Array("contact info",
	"more information",
	"Risk engineering services",
	"Solutions and services");

 var arrIndonesiaActionUrl3 = new Array("http://www.zurich.co.id/Indonesia/home/Others/Contact.asp",
	"http://www.zurich.co.id/english/home/Corporate/Welcome.asp",
	"http://www.zurich.co.id/Indonesia/home/Risk/Welcome.asp",
	"http://www.zurich.com/corporatebusiness/home/home.htm");


var arrIrelandActionText1 = new Array("car insurance - agent/broker",
	"car insurance - claim",
	"car insurance - contact",
	"Car insurance - info",
	"car insurance - quote",
	"home insurance - agent/broker",
	"home insurance - claim",
	"home insurance - contact",
	"home insurance - info",
	"home insurance - quote",
	"life insurance - contact",
	"life insurance - info",
	"other products - info");

 var arrIrelandActionUrl1 = new Array("http://www.zurichinsurance.ie/maps/broker-finder.aspx",
	"http://www.zurichinsurance.ie/ex00.asp?ID=MCLAIM",
	"http://www.zurichinsurance.ie/helppoint/contact.aspx",
	"http://www.zurichinsurance.ie/car-insurance/default.aspx",
	"https://www.zurichinsurance.ie/motorquote/",
	"http://www.zurichinsurance.ie/maps/broker-finder.aspx",
	"http://www.zurichinsurance.ie/ex00.asp?ID=CLMTEMP",
	"http://www.zurichinsurance.ie/helppoint/contact.aspx",
	"http://www.zurichinsurance.ie/home-insurance/default.aspx",
	"https://www.zurichinsurance.ie/household/",
	"http://www.zurichlife.ie/customer_support/home.jsp",
	"http://www.zurichlife.ie/home.jsp",
	"http://www.zurichinsurance.ie/ex00.asp");

var arrIrelandActionText2 = new Array("contact info",
	"general information",
	"life & pension info",
	"to find a broker/agent",
	"to make a claim");

 var arrIrelandActionUrl2= new Array("http://www.zurichinsurance.ie/helppoint/contact.aspx",
	"http://www.zurichinsurance.ie/business-insurance/default.aspx",
	"http://www.zurichlife.ie/home.jsp",
	"http://www.zurichinsurance.ie/maps/broker-finder.aspx",
	"http://www.zurichinsurance.ie/ex00.asp?ID=CLMTEMP");

var arrIrelandActionText3 = new Array("life & pension info",
	"more information",
	"Solutions and services");

 var arrIrelandActionUrl3 = new Array("http://www.zurichlife.ie/home.jsp",
	"http://www.zurichinsurance.ie/business-insurance/default.aspx",
	"http://www.zurich.com/corporatebusiness/home/home.htm");


var arrIrelandActionText4 = new Array("more information",
	"more information (life)");

 var arrIrelandActionUrl4 = new Array("https://www.zurichinsurance.ie/extranet/",
	"https://www.zurichlife.ie/bgsi/log_on/login.jsp?randInt=1");

var arrItalyActionText1 = new Array("car insurance - agent/broker",
	"car insurance - claim",
	"car insurance - contact",
	"Car insurance - info",
	"car insurance - quote",
	"home insurance - agent/broker",
	"home insurance - contact",
	"home insurance - info",
	"home insurance - quote",
	"life insurance - adviser/broker",
	"life insurance - info");

 var arrItalyActionUrl1 = new Array("http://zurich.locator.it/",
	"http://www.zurich.com/italia/servizieutilita/Risarcimento+diretto/Risarcimentodiretto.htm",
	"http://www.zurich.com/italia/home/contatti.htm",
	"http://www.zurich.com/italia/pertestesso/auto/Autoveicoli.htm",
	"https://www.zurich-connect.it/default.aspx?Target=PRPRDatiPolizza&tipoVeicolo=Auto",
	"http://zurich.locator.it/",
	"http://www.zurich.com/italia/home/contatti.htm",
	"http://www.zurich.com/italia/pertestesso/casaefamiglia/Casaefamiglia.htm",
	"https://www.zurich-connect.it/default.aspx?Target=PRPRDatiPolizzaCasa&tipoVeicolo=Abit",
	"http://zurich.locator.it/",
	"http://www.zurich.com/italia/pertestesso/pertestesso.htm");

var arrItalyActionText2 = new Array("more information",
	"to find a broker/agent");

 var arrItalyActionUrl2 = new Array("http://www.zurich.com/italia/perlatuaazienda/perlatuaazienda.htm",
	"http://zurich.locator.it/");

var arrItalyActionText3 = new Array("general information",
	"Solutions and services");

 var arrItalyActionUrl3 = new Array("http://www.zurich.com/italia/perlatuaazienda/GlobalCorporateItalyZIP.htm",
	"http://www.zurich.com/corporatebusiness/home/home.htm");

var arrLiechtensteinActionText1 = new Array("life insurance - contact",
	"life insurance - info");

 var arrLiechtensteinActionUrl1 = new Array("http://www.zurich.li/site6/de/zurich/kontakt.html",
	"http://www.zurich.li/site6/de/produkte.html");

var arrMexicoActionText1 = new Array("car insurance - claim",
	"car insurance - contact",
	"Car insurance - info",
	"car insurance - quote",
	"home insurance - claim",
	"home insurance - contact",
	"home insurance - quote",
	"life insurance - claim",
	"life insurance - contact",
	"life insurance - info",
	"life insurance - quote");

 var arrMexicoActionUrl1 = new Array("http://www.zurich.com.mx/client_atn_auto.htm",
	"http://www.zurich.com.mx/client_atencion.htm",
	"http://www.zurich.com.mx/pud_autos.htm",
	"http://www.zurichconnect.com.mx/wps/portal/portalzurich/compra/auto",
	"http://www.zurich.com.mx/client_atn_hogar.htm",
	"http://www.zurich.com.mx/client_atencion.htm",
	"http://www.zurichconnect.com.mx/wps/portal/portalzurich/compra/hogar/!ut/p/c5/04_SB8K8xLLM9MSSzPy8xBz9CP0os3gLFz9fC09LYwMDP0s3A08DYy-DMAMjA3dPc6B8JE55AxczArq99KPSc_KTgPaEg2xGUmvhb2Fu4OnuYWrqbwzSaoQmj8UmkLwBDuBooO_nkZ-bql-QG1EZ7KnrCADFVA_u/dl3/d3/L3dDb0EvUU5RTGtBISEvWUZSdndBISEvNl84RE5NOEk5MzAwTjlGMEkwM0owVjAyMEdBMQ!!/",
	"http://www.zurich.com.mx/client_atn_vida.htm",
	"http://www.zurich.com.mx/client_atencion.htm",
	"http://www.zurich.com.mx/pud_vida.htm",
	"http://www.zurichconnect.com.mx/wps/portal/portalzurich/compra/vida");

var arrMexicoActionText2 = new Array("contact info",
	"fleet insurance",
	"general information",
	"life & pension info");

 var arrMexicoActionUrl2 = new Array("http://www.zurich.com.mx/contacto.htm",
	"http://www.zurich.com.mx/p-empresa-se-autoflotillas.htm",
	"http://www.zurich.com.mx/noticias.htm",
	"http://www.zurich.com.mx/pempr_empl.htm");

var arrMexicoActionText3 = new Array("more information",
	"Solutions and services");

 var arrMexicoActionUrl3 = new Array("http://www.zurich.com.mx/masivos.htm",
	"http://www.zurich.com/corporatebusiness/home/home.htm");

var arrMoroccoActionText1 = new Array("car insurance - agent/broker",
	"Car insurance - info",
	"home insurance - agent/broker",
	"other products - info");

 var arrMoroccoActionUrl1 = new Array("http://www.zurich.com/Morocco/Contact/TrouverNotreAgents/TrouverNotreAgents.htm",
	"http://www.zurich.com/Morocco/Particuliers/Votrevehicule.htm",
	"http://www.zurich.com/Morocco/Contact/TrouverNotreAgents/TrouverNotreAgents.htm",
	"http://www.zurich.com/Morocco/Particuliers/Nos_Produits.htm");

var arrMoroccoActionText2 = new Array("general information",
	"to find a broker/agent");

 var arrMoroccoActionUrl2 = new Array("http://www.zurich.com/Morocco/Entreprises/Entreprises.htm",
	"http://www.zurich.com/Morocco/Contact/TrouverNotreAgents/TrouverNotreAgents.htm");

var arrMoroccoActionText3 = new Array("general information");

 var arrMoroccoActionUrl3 = new Array("http://www.zurich.com/Morocco/Entreprises/GrandesEntreprises.htm");

var arrMoroccoActionText4 = new Array("general information");

 var arrMoroccoActionUrl4 = new Array("http://www.zurich.com/Morocco/Services/EspaceIntermediaires.htm");

var arrNetherlandsActionText1 = new Array("contact info",
	"International programs from Zurich",
	"Risk engineering services",
	"Solutions and services");

 var arrNetherlandsActionUrl1 = new Array("http://www.zurich.com/corporatebusiness/en-be/benelux.htm",
	"http://www.zurich.com/corporatebusiness/solutionsandservices/multinationalinsuranceproposition.htm",
	"http://www.zurich.com/corporatebusiness/solutionsandservices/riskengineeringservices.htm",
	"http://www.zurich.com/corporatebusiness/home/home.htm");

var arrNewZealandActionText1 = new Array("contact info",
	"fleet insurance",
	"liability cover",
	"to make a claim");

 var arrNewZealandActionUrl1 = new Array("http://www.zurich.co.nz/zportal/cs/ContentServer?pagename=NZInternet/Page/ThreeColumn&cid=1167365076882",
	"http://www.zurich.co.nz/zportal/cs/ContentServer?pagename=NZInternet/Page/DocumentGroupList&cid=1167365077190",
	"http://www.zurich.co.nz/zportal/cs/ContentServer?pagename=NZInternet/Page/ThreeColumn&cid=1167365077181",
	"https://www.zurich.co.nz/approot/CRS/login.html");


var arrNorwayActionText1 = new Array("contact info",
	"International programs from Zurich",
	"Risk engineering services",
	"Solutions and services",
	"to make a claim");

 var arrNorwayActionUrl1 = new Array("http://www.zurich.com/nordic/contacts/maps/Contacts-Maps.htm",
	"http://www.zurich.com/nordic/solutions/Solutions-MIP.htm",
	"http://www.zurich.com/nordic/riskengineering/introduction.htm",
	"http://www.zurich.com/nordic/solutions/introduction.htm",
	"http://www.zurich.com/nordic/claims/introduction.htm");

var arrPortugalActionText1 = new Array("car insurance - agent/broker",
	"car insurance - claim",
	"car insurance - contact",
	"Car insurance - info",
	"home insurance - agent/broker",
	"home insurance - claim",
	"home insurance - contact",
	"home insurance - info",
	"life insurance - adviser/broker",
	"life insurance - contact",
	"life insurance - info",
	"other products - broker",
	"other products - claim",
	"other products - contact",
	"other products - info");
 
 var arrPortugalActionUrl1 = new Array("http://www.zurich.com/portugal/services/contacts/Portal+do+agente/ondeestamos.htm",
	"https://www.zurich.com/portugal/services/forms/participation-online-sin.htm",
	"https://www.zurich.com/portugal/services/forms/svi-spe-rif.htm",
	"http://www.zurich.com/portugal/particulares/solucoesindividuais/zurichauto.htm",
	"http://www.zurich.com/portugal/services/contacts/Portal+do+agente/ondeestamos.htm",
	"http://www.zurich.com/portugal/apoioaocliente/ZAP/ZAP.htm",
	"https://www.zurich.com/portugal/services/forms/svi-spe-rif.htm",
	"http://www.zurich.com/portugal/apoioaocliente/ZAP/ZAP.htm",
	"http://www.zurich.com/portugal/apoioaocliente/ZAP/ZAP.htm",
	"https://www.zurich.com/portugal/services/forms/svi-spe-rif.htm",
	"https://www.zurich.com/portugal/particulares/vida/solucoesvida.htm",
	"http://www.zurich.com/portugal/services/contacts/Portal+do+agente/ondeestamos.htm",
	"http://www.zurich.com/portugal/apoioaocliente/ZAP/ZAP.htm",
	"https://www.zurich.com/portugal/services/forms/svi-spe-rif.htm",
	"https://www.zurich.com/portugal/particulares/solucoesindividuais/efg.htm");

var arrPortugalActionText2 = new Array("contact info",
	"general information",
	"life & pension info",
	"to find a broker/agent");

 var arrPortugalActionUrl2 = new Array("https://www.zurich.com/portugal/services/forms/svi-spe-rif.htm",
	"http://www.zurich.com/portugal/empresas/segmentosdemercado/segmentosdemercado.htm",
	"http://www.zurich.com/portugal/empresas/solucoes_vida/solucoes-vida.htm",
	"http://www.zurich.com/portugal/services/contacts/Portal+do+agente/ondeestamos.htm");

var arrRussiaActionText1 = new Array("car insurance - agent/broker",
	"car insurance - contact",
	"Car insurance - info",
	"home insurance - agent/broker",
	"home insurance - contact",
	"home insurance - info",
	"life insurance - adviser/broker",
	"life insurance - contact",
	"life insurance - info",
	"other products - broker",
	"other products - contact",
	"other products - info");

 var arrRussiaActionUrl1 = new Array("http://www.zurich.ru/contacts/office_sale/",
	"http://www.zurich.ru/contacts/",
	"http://www.zurich.ru/products/auto/",
	"http://www.zurich.ru/contacts/office_sale/",
	"http://www.zurich.ru/contacts/",
	"http://www.zurich.ru/products/property/",
	"http://www.zurich.ru/contacts/office_sale/",
	"http://www.zurich.ru/contacts/",
	"http://www.zurich.ru/products/dms/",
	"http://www.zurich.ru/contacts/office_sale/",
	"http://www.zurich.ru/contacts/",
	"http://www.zurich.ru/products/");

var arrRussiaActionText2 = new Array("contact info",
	"fleet insurance",
	"to find a broker/agent");

 var arrRussiaActionUrl2 = new Array("http://www.zurich.ru/contacts/",
	"http://www.zurich.ru/corp/auto/",
	"http://www.zurich.ru/contacts/office_sale/");


var arrRussiaActionText3 = new Array("more information",
	"Solutions and services");

 var arrRussiaActionUrl3 = new Array("http://www.zurich.ru/corp/",
	"http://www.zurich.com/corporatebusiness/home/home.htm");


var arrSingaporeActionText1 = new Array("international life - info",
	"international life -contact");

 var arrSingaporeActionUrl1 = new Array("http://www.zurich.com/international/singapore/products/foryou/lumpsuminvestments.htm",
	"http://www.zurich.com/international/singapore/contactus/localoffice.htm");


var arrSouthAfricaActionText1 = new Array("contact info",
	"general information");

 var arrSouthAfricaActionUrl1 = new Array("http://www.zurich.co.za/our_locations_regional_sa.php",
	"http://www.zurich.co.za/products_services_personal_landing.php");

var arrSouthAfricaActionText2 = new Array("general information");

 var arrSouthAfricaActionUrl2 = new Array("http://www.zurich.co.za/products_services_commercial.php");

var arrSouthAfricaActionText3 = new Array("general information",
	"Solutions and services");

 var arrSouthAfricaActionUrl3 = new Array("http://www.zurich.co.za/products_services_commercial.php",
	"http://www.zurich.com/corporatebusiness/home/home.htm");

var arrSouthAfricaActionText4 = new Array("more information");

 var arrSouthAfricaActionUrl4 = new Array("http://www.zurich.co.za/brokers_bulletin.php");

var arrSpainActionText1 = new Array("car insurance - agent/broker",
	"car insurance - claim",
	"car insurance - contact",
	"Car insurance - info",
	"car insurance - quote",
	"home insurance - agent/broker",
	"home insurance - claim",
	"home insurance - contact",
	"home insurance - info",
	"home insurance - quote",
	"life insurance - adviser/broker",
	"life insurance - claim",
	"life insurance - contact",
	"life insurance - info",
	"other products - broker",
	"other products - claim",
	"other products - contact",
	"other products - info");

 var arrSpainActionUrl1 = new Array("http://www.zurich.es/seguro/conocenos/nuestrasoficinas.htm",
	"http://www.zurich.es/seguro/services/contactaconnosotros.htm",
	"http://www.zurich.es/seguro/services/contactaconnosotros.htm",
	"http://www.zurich.es/seguro/seguros/segurosapersonas/auto/zurichmotorpack.htm",
	"http://www.zurich.es/seguro/services/forms/form4?product=Zurich+Motor+Pack&service=Auto",
	"http://www.zurich.es/seguro/conocenos/nuestrasoficinas.htm",
	"http://www.zurich.es/seguro/services/contactaconnosotros.htm",
	"http://www.zurich.es/seguro/services/contactaconnosotros.htm",
	"http://www.zurich.es/seguro/seguros/segurosapersonas/hogar/hogar.htm",
	"http://www.zurich.es/seguro/services/forms/form5?service=Zurich+Hogar",
	"http://www.zurich.es/seguro/conocenos/nuestrasoficinas.htm",
	"http://www.zurich.es/seguro/services/contactaconnosotros.htm",
	"http://www.zurich.es/seguro/services/contactaconnosotros.htm",
	"http://www.zurich.es/seguro/seguros/segurosapersonas/proteccionpersonal/proteccionpersonal.htm",
	"http://www.zurich.es/seguro/conocenos/nuestrasoficinas.htm",
	"http://www.zurich.es/seguro/services/contactaconnosotros.htm",
	"http://www.zurich.es/seguro/services/contactaconnosotros.htm",
	"http://www.zurich.es/seguro/seguros/segurosapersonas/segurosapersonas.htm");

var arrSpainActionText2 = new Array("contact info",
	"general information",
	"life & pension info",
	"to find a broker/agent	");

 var arrSpainActionUrl2 = new Array("https://www.zurich.es/seguro/services/forms/contactar.htm?product=Zurich+Pymes",
	"http://www.zurich.es/seguro/seguros/segurosaempresas/pymes/pymes.htm",
	"http://www.zurich.es/seguro/seguros/segurosaempresas/pymes/pymevidaxxi.htm",
	"http://www.zurich.es/seguro/conocenos/nuestrasoficinas.htm");

var arrSpainActionText3 = new Array("more information",
	"Solutions and services");

 var arrSpainActionUrl3 = new Array("http://www.zurich.es/seguro/seguros/segurosaempresas/grandeempresas/grandes-empresas.htm",
	"http://www.zurich.com/corporatebusiness/home/home.htm");

var arrSpainActionText4 = new Array("more information");

 var arrSpainActionUrl4 = new Array("https://www.zurich.es/seguro/areadeprofesionales/login.htm");


var arrSwedenActionText1 = new Array("contact info",
	"International programs from Zurich",
	"Risk engineering services",
	"Solutions and services",
	"to make a claim");

 var arrSwedenActionUrl1 = new Array("http://www.zurich.com/nordic/contacts/maps/Contacts-Maps.htm",
	"http://www.zurich.com/nordic/solutions/Solutions-MIP.htm",
	"http://www.zurich.com/nordic/riskengineering/introduction.htm",
	"http://www.zurich.com/nordic/solutions/introduction.htm",
	"http://www.zurich.com/nordic/claims/introduction.htm");


// Switzerland - no broker info
var arrSwitzerlandActionText1 = new Array("car insurance - agent/broker",
	"car insurance - claim",
	"car insurance - contact",
	"Car insurance - info",
	"car insurance - quote",
	"home insurance - agent/broker",
	"home insurance - claim",
	"home insurance - contact",
	"home insurance - info",
	"home insurance - quote",
	"life insurance - adviser/broker",
	"life insurance - claim",
	"life insurance - contact",
	"life insurance - info",
	"life insurance - quote",
	"other products - broker",
	"other products - claim",
	"other products - contact",
	"other products - info",
	"other products - quote");

 var arrSwitzerlandActionUrl1 = new Array("http://www.zurich.ch/site/de/kontakt/standorte.html",
	"http://www.zurich.ch/site/de/sforms/sform/mf.html",
	"http://www.zurich.ch/site/de/kontakt.html",
	"http://www.zurich.ch/site/de/priv/motor.html",
	"http://www.zurichconnect.ch/site4/gm/de/versicherungen/versicherungen.htm",
	"http://www.zurich.ch/site/de/kontakt/standorte.html",
	"http://www.zurich.ch/site/de/sforms/sform/claims_npv.html",
	"http://www.zurich.ch/site/de/kontakt.html",
	"http://www.zurich.ch/site/de/priv/res.html",
	"http://www.zurichconnect.ch/site4/gm/de/versicherungen/versicherungen.htm",
	"http://www.zurich.ch/site/de/kontakt/standorte.html",
	"http://www.zurich.ch/site/de/sforms/kontakt.html",
	"http://www.zurich.ch/site/de/kontakt.html",
	"http://www.zurich.ch/site/de/priv/vorsorgen.html",
	"http://www.zurich.ch/site/de/privservices/offerte.html",
	"http://www.zurich.ch/site/de/kontakt/standorte.html",
	"http://www.zurich.ch/site/de/sforms/kontakt.html",
	"http://www.zurich.ch/site/de/kontakt.html",
	"http://www.zurich.ch/site/de/priv/info.html",
	"http://www.zurichconnect.ch/site4/gm/de/versicherungen/versicherungen.htm");



var arrSwitzerlandActionText2 = new Array("contact info",
	"fleet insurance",
	"general information",
	"liability cover",
	"life & pension info",
	"life insurance - quote",
	"online support/tools",
	"to find a broker/agent",
	"to make a claim");

 var arrSwitzerlandActionUrl2 = new Array("http://www.zurich.ch/site/de/sforms/kontakt.html",
	"http://www.zurich.ch/site/de/com/sme/waren/flotten.html",
	"http://www.zurich.ch/site/de/com.html",
	"http://www.zurich.ch/site/de/com/sme/haft.html",
	"http://www.zurich.ch/site/de/com/stiftungen.html",
	"http://www.zurich.ch/site/de/comservices/offerte.html",
	"https://www.zurich.ch/intro/de.html?login",
	"http://www.zurich.ch/site/de/kontakt/standorte.html",
	"http://www.zurich.ch/site/de/sforms/sform.html");


var arrSwitzerlandActionText3 = new Array("contact info",
	"general information",
	"International programs from Zurich",
	"Risk engineering services",
	"Solutions and services",
	"to make a claim");

 var arrSwitzerlandActionUrl3 = new Array("http://www.zurich.ch/site/de/unternehmen/ihre_ansprechpartner.html",
	"http://www.zurich.ch/site/de/unternehmen.html",
	"http://www.zurich.ch/site/de/unternehmen/ipb.html",
	"http://www.zurich.ch/site/de/unternehmen/re.html",
	"http://www.zurich.ch/site/de/unternehmen.html",
	"http://www.zurich.ch/site/de/com/myzurich.html");

// United Kingdom 
var arrUnitedKingdomActionText1 = new Array("car insurance - agent/broker",
	"Car insurance - info",
	"car insurance - quote",
	"home insurance - agent/broker",
	"home insurance - quote",
	"life insurance - adviser/broker",
	"other products - broker",
	"Car insurance - claim",
	"home insurance - claim",
	"life insurance - claim",
	"other products - info",
	"life insurance - info",
	"life insurance - contact",
	"car insurance - contact",
	"home insurance - contact");

 var arrUnitedKingdomActionUrl1 = new Array("http://www.zurich.co.uk/customerhelppoint/find_broker/findbroker.htm",
	"http://www.zurich.co.uk/home/foryou/Insurance/carinsurance.htm",
	"http://www.zurich-connect.co.uk/connect/direct/carinsurance/introduction.htm",
	"http://www.zurich.co.uk/customerhelppoint/find_broker/findbroker.htm",
	"http://www.zurich-connect.co.uk/connect/direct/homeinsurance/introduction.htm",
	"http://www.zurich.co.uk/customerhelppoint/find_broker/findbroker.htm",
	"http://www.zurich.co.uk/customerhelppoint/find_broker/findbroker.htm",
	"http://www.zurich-connect.co.uk/connect/direct/existingcustomers/howtoclaim.htm",
	"http://www.zurich-connect.co.uk/connect/direct/existingcustomers/howtoclaim.htm",
	"http://www.zurich.co.uk/life/existingcustomers/How%20to%20claim",
	"http://www.zurich.co.uk/home/foryou/introduction.htm",
	"http://www.zurich.co.uk/life/home/Introduction.htm",
	"http://www.zurich.co.uk/life/aboutus/General+enquiries.htm",
	"http://www.zurich-connect.co.uk/connect/direct/contactus/contact.htm",
	"http://www.zurich-connect.co.uk/connect/direct/contactus/contact.htm");


var arrUnitedKingdomActionText2 = new Array("general information",
	"to find a broker/agent",
	"public sector offering",
	"fleet insurance",
	"to call Zurich direct",
	"life & pension info");

 var arrUnitedKingdomActionUrl2 = new Array("http://www.zurich.co.uk/home/foryourbusiness/introduction.htm",
	"http://www.zurich.co.uk/customerhelppoint/find_broker/findbroker.htm",
	"http://www.zurich.co.uk/home/forpublicsector/Introduction.htm",
	"http://www.zurich.co.uk/commercial/productsandservices/commercialinsurance/Fleet.htm",
	"http://www.zurich.co.uk/home/aboutus/Contactus/contactUs.htm",
	"http://www.zurich.co.uk/corporatepensions/home/home1.htm");


var arrUnitedKingdomActionText3 = new Array("general information",
	"Solutions and services",
	"Risk engineering services",
	"life & pension info",
	"contact info");

 var arrUnitedKingdomActionUrl3 = new Array("http://www.zurich.co.uk/home/foryourbusiness/globalcorporate/listedproducts.htm",
	"http://www.zurich.com/corporatebusiness/solutionsandservices/solutionsandservices.htm",
	"http://www.zurich.co.uk/RiskServices/workingwithyou/Working+with+you.htm",
	"http://www.zurich.co.uk/corporatepensions/home/home1.htm",
	"http://www.zurich.co.uk/home/aboutus/Contactus/contacts_for_corporate.htm");



var arrUnitedKingdomActionText4 = new Array("financial adivser info",
	"broker info",
	"general information");

 var arrUnitedKingdomActionUrl4 = new Array("https://www.zurich.co.uk/zurichintermediary/?login",
	"http://www.zurich.co.uk/commercial/home/introduction.htm",
	"http://www.zurich.co.uk/home/forintermediaries/introduction.htm");


// United States 
var arrUnitedStatesActionText1 = new Array("Car insurance - info",
	"car insurance - quote",
	"car insurance - claim",
	"car insurance - contact",
	"car insurance - agent/broker",
	"home insurance - quote",
	"home insurance - claim",
	"home insurance - contact",
	"home insurance - agent/broker",
	"life insurance - claim",
	"life insurance - contact",
	"life insurance - adviser/broker",
	"other products - info",
	"life insurance - info",
	"home insurance - info");

 var arrUnitedStatesActionUrl1 = new Array("http://www.farmers.com/auto_insurance.html",
	"https://quote.farmers.com/FFQWeb/ffq/landingpage.jsf",
	"http://www.farmers.com/insurance_claims.html",
	"http://www.farmers.com/contact_us.html",
	"http://www.farmersagent.com/Search.aspx",
	"https://quote.farmers.com/FFQWeb/ffq/landingpage.jsf",
	"http://www.farmers.com/insurance_claims.html",
	"http://www.farmers.com/contact_us.html",
	"http://www.farmersagent.com/Search.aspx",
	"http://www.farmers.com/insurance_claims.html",
	"http://www.farmers.com/contact_us.html",
	"http://www.farmersagent.com/Search.aspx",
	"http://www.farmers.com/insurance_products.html",
	"http://www.farmers.com/life_insurance.html",
	"http://www.farmers.com/home_insurance.html");


var arrUnitedStatesActionText2 = new Array("casualty",
	"to make a claim",
	"contact info",
	"online support/tools");

 var arrUnitedStatesActionUrl2 = new Array("http://www.zurichna.com/zna/products/product/general_liability.htm",
	"https://webclaims.zurichna.com/mainpage.aspx",
	"http://www.zurichna.com/zna/services/contact",
	"http://www.zurichna.com/zna/online-services/online_customer/online_customer.htm");

 var arrUnitedStatesActionText3 = new Array("	contact info",
	"general information",
	"Solutions and services");

 var arrUnitedStatesActionUrl3 = new Array("http://www.zurichna.com/zna/services/contact",
	"http://www.zurich.com/corporatebusiness/home/home.htm",
	"http://www.zurich.com/corporatebusiness/solutionsandservices/solutionsandservices.htm");

