//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("webmasterid", "Immigrants in the USA", "Immigrants in the USA",  null, null);
	menu.addItem("freedownloadid", "Foreign Nationals Coming to the USA", "Foreign Nationals Coming to the USA", null, null);
	menu.addItem("searchengineid", "Brochures and Applications", "Brochures and Applications",  null, null);
	menu.addItem("miscid", "Contact US", "Contact US",  null, null);

	menu.addSubItem("webmasterid", "Review Plans", "Review Plans",  href="immigrants.htm");
	menu.addSubItem("webmasterid", "Citizen Secure", "Citizen Secure",  href="cs.htm");
	menu.addSubItem("webmasterid", "Citizen Secure - Economy", "Citizen Secure - Economy", href="cse.htm");
	menu.addSubItem("webmasterid", "Inbound Immigrant for Seniors", "Inbound Immigrant for Seniors",  href="inboundimmigrant.htm");
	menu.addSubItem("webmasterid", "Why Buy From Us", "Why By From Us",  href="contactus.htm");
	menu.addSubItem("webmasterid", "Complete Our Request for Quote Form", "Complete Our Request for Quote Form",  href="inforeq.htm");
	menu.addSubItem("webmasterid", "HOME", "HOME",  href="home.htm");

	menu.addSubItem("freedownloadid", "Review Plans", "Review Plans",  href="visitors.htm");
	menu.addSubItem("freedownloadid", "Atlas Series Plan", "Atlas Series Plan",  href="atlas.htm");
	menu.addSubItem("freedownloadid", "Inbound USA Plan", "Inbound USA Plan",  href="inboundusa.htm");
	menu.addSubItem("freedownloadid", "Why Buy From Us", "Why Buy From Us",  href="contactus.htm");
	menu.addSubItem("freedownloadid", "Complete Our Request for Quote Form", "Complete Our Request for Quote Form",  href="inforeq.htm");
	menu.addSubItem("freedownloadid", "HOME", "HOME",  href="home.htm");

	menu.addSubItem("searchengineid", "Atlas Series Plan", "Atlas Series",  href="Atlas06.pdf");
	menu.addSubItem("searchengineid", "Inbound Immigrant", "Inbound Immigrant",  href="InboundImmigrant.doc");
	menu.addSubItem("searchengineid", "Inbound USA", "Inbound USA",  href="InboundUSA2007.doc");
	menu.addSubItem("searchengineid", "Citizen Secure", "Citizen Secure", href="cs.htm");
      	menu.addSubItem("searchengineid", "Citizen Secure - Economy", "Citizen Secure _ Economy", href="cs.htm");
	menu.addSubItem("searchengineid", "Why Buy From Us", "Why Buy From Us",  href="contactus.htm");
	menu.addSubItem("searchengineid", "Complete Our Request for Quote Form", "Complete Our Request for Quote Form",  href="inforeq.htm");
	menu.addSubItem("searchengineid", "HOME", "HOME",  href="home.htm");

	menu.addSubItem("miscid", "Email", "Email",  "mailto:health@immigrationhealth.com");
	menu.addSubItem("miscid", "Telephone", "Telephone",  href="contactus.htm");
	menu.addSubItem("miscid", "Mailing Address", "Mailing Address",  href="contactus.htm");
	menu.addSubItem("miscid", "Complete Our Request for Quote Form", "Complete Our Request for Quote Form",  href="inforeq.htm");
	menu.addSubItem("miscid", "HOME", "HOME",  href="home.htm");

	menu.showMenu();
}