//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Go back to our home page", "eng_index.htm", null);
	menu.addItem("healthid", "Health", "Our health plan",  null, null);
	menu.addItem("propertyid", "Property and Casualty", "Our property and casualty policies",  null, null);
	menu.addItem("lifeid", "Life/Retirement", "Our life insurance products and Retirement plans",  null, null);
	menu.addItem("disabilityid", "Disability", "Our disability products",  null, null);
	menu.addItem("servicesid", "Services", "Free services for yourself or you company","eng_services.htm", null);

	menu.addSubItem("healthid", "Grupal Health Plans", "Health plans for your company or institutions",  "salud/eng_health_grupal.htm");
	menu.addSubItem("healthid", "Health Insurance (Direct Payment)", "The best alternative for your self, your family or your mate", "salud/eng_health_direct_payment.htm");
	menu.addSubItem("healthid", "Dental Plans", "Dental Plans that we offer, and how you can get them",  "salud/eng_health_dental.htm");
	menu.addSubItem("healthid", "Vision Plans", "Our visual plans, for your self, your family or your mate",  "salud/eng_health_vision.htm");
	menu.addSubItem("healthid", "Organs Transplant Plan", "Insure yourself or your family with our Organs Transplant Plan", "salud/eng_health_transplant.htm");

	menu.addSubItem("propertyid", "Commercial Package", "Protect your business from multiples risks",  "propiedad/packages/eng_property_comercial_package.htm");
	menu.addSubItem("propertyid", "Commercial/Personal Vehicles", "Protect your business's vehicles, get free quote",  "propiedad/vehiculos/eng_property_vehicle_gen.htm");
	menu.addSubItem("propertyid", "Personal Package", "Protect your property against multiples risks",  "propiedad/packages/eng_property_personal_package.htm");
	menu.addSubItem("propertyid", "Dwelling", "Protect your property's structure or contect against multiple risks, get a free quote",  "propiedad/vivienda/eng_property_dwelling.htm");
	menu.addSubItem("propertyid", "Flood", "Insure your self against this common risk, get a free quote",  "propiedad/vivienda/eng_property_flood.htm");
	menu.addSubItem("propertyid", "Builder's Risk", "Insure your under construction property, get a free quote",  "propiedad/vivienda/eng_property_builder_risk.htm");
	menu.addSubItem("propertyid", "Professional Liabiliy", "Protect against risk and demands in your profession",  "propiedad/responsabilidad/eng_property_liability.htm");
	menu.addSubItem("propertyid", "Financial Fines", "Save while stablishing your business.",  "propiedad/fianzas/eng_property_fines.htm");
	menu.addSubItem("propertyid", "Commercial/Personal Fire", "Protect your self or your business against this risk",  "propiedad/incendios/eng_property_fire.htm");
	menu.addSubItem("propertyid", "Commercial/Personal Umbrella", "Learn more about 'umbrellas' - expansions to Public Liability Limits",  "propiedad/packages/eng_property_umbrella.htm");
	menu.addSubItem("propertyid", "Theft", "Proteja your home or your business",  "propiedad/robo/eng_property_theft.htm");
	menu.addSubItem("propertyid", "Professional Office", "Insure your office and your professional practice, Learn more about our Professional Office Program",  "propiedad/oficinas/eng_property_offices.htm");
	menu.addSubItem("propertyid", "Employee Liability", "Protect your self against your employees liabilities",  "propiedad/responsabilidad/eng_property_employees_liab.htm");
	menu.addSubItem("propertyid", "Yatch/Boats", "Insure your boat or yatch",  "propiedad/yates/eng_property_yatch.htm");
	menu.addSubItem("propertyid", "Road & Travel Assitance", "Protect your self and your family against road or travel emergencies",  "propiedad/asistencia/eng_property_road_assitance.htm");
	menu.addSubItem("propertyid", "Home Assitance", "Protect your self against home situations",  "propiedad/asistencia/eng_property_home_assitance.htm");
	menu.addSubItem("propertyid", "More", "More products on offer",  "propiedad/eng_property_gen.htm");

	menu.addSubItem("lifeid", "Term Life Insurance", "",  "vida/eng_life_gen.htm");
	menu.addSubItem("lifeid", "Universal Life Insurance",  "","vida/eng_life_gen.htm");
	menu.addSubItem("lifeid", "Whole Life Insurance",  "vida/eng_life_gen.htm");
	menu.addSubItem("lifeid", "Retirement Plan - 401k/1165e", "",  "vida/eng_life_retirement_5F401k.htm");
	menu.addSubItem("lifeid", "Keogh Retirement Plan", "",  "vida/eng_life_retirement_gen.htm");
	menu.addSubItem("lifeid", "Exempt IRA", "",  "vida/eng_life_exempt_ira.htm");
	
	menu.addSubItem("disabilityid", "SINOT", "Non-labor Disability Insurance",  "incapacidad/eng_disability_sinot.htm");
	menu.addSubItem("disabilityid", "Individual Disability Insurance", "",  "incapacidad/eng_disability_individual.htm");
	menu.addSubItem("disabilityid", "Short Term Disability Insurance", "",  "incapacidad/eng_disability_gen.htm");
	menu.addSubItem("disabilityid", "Long Term Disability Insurance", "",  "incapacidad/eng_disability_gen.htm");

	menu.showMenu();
}