//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("webmasterid", "Home", "Home Page",  null, null);
	menu.addItem("newsid", "About Us", "About Franck and Suzanne Belili",  null, null);
	menu.addItem("freedownloadid", "FAQ", "Frequently Asked Questions",  null, null);
	menu.addItem("publishid", "Testimonials", "Testimonials",  null, null);
	menu.addItem("searchengineid", "Products + Order", "Order Products",  null, null);
	menu.addItem("searchengineid1", "Resources", "Resources",  null, null);
	menu.addItem("miscid1", "Useful Links", "Useful Links",  null, null);
	menu.addItem("miscid", "Misc Pages", "Misc Pages",  null, null);

	menu.addSubItem("webmasterid", "Home Page", "Getting Into Residency in America",  "index.html", "");
	menu.addSubItem("webmasterid", "Our Mission", "Our Mission",  "mission.htm", "");
	menu.addSubItem("webmasterid", "Disclaimer ", "Disclaimer",  "disclaimer.htm", "");


	menu.addSubItem("newsid", "About Franck and Suzanne", "About Franck and Suzanne Belibi",  "about.htm", "");
	
	menu.addSubItem("freedownloadid", "Frequently Asked Questions", "Frequently Asked Questions About Our Program", "faq.htm", "");

	menu.addSubItem("publishid", "Testimonials", "What People Say About Our Program",  "testimonials.htm", "");

	menu.addSubItem("searchengineid", "The International Medical Graduate Best Hope", "The International Medical Graduate Best Hope",  "book.htm", "");
	menu.addSubItem("searchengineid", "Consultation Services", "Telephone and e-Mail Consultation Services",  "consultationservices.htm", "");
	menu.addSubItem("searchengineid", "Coaching", "Coaching Services For Success In The Match",  "coach.htm", "");
	menu.addSubItem("searchengineid", "Teleclasses", "Teleclasses",  "teleclass.htm", "");
	menu.addSubItem("searchengineid", "Letters of Recommendation", "Letters of Recommendation",  "lor.htm", "");
	menu.addSubItem("searchengineid", "Green Card Application", "Self Sponsoring Green Card Application",  "greencardapplication.htm", "");
	menu.addSubItem("searchengineid", "Internship Services", "Internship Services",  "internship.htm", "");
	menu.addSubItem("searchengineid", "How to Prepare for and Handle Interviews", "How to prepare and handle interviews",  "interviews.htm", "");
	menu.addSubItem("searchengineid", "Personal Statement Services", "How to prepare a Personal Statement",  "psservices.htm", "");
	menu.addSubItem("searchengineid", "Curriculum Vitae Services", "How to prepare a Curriculum Vitae",  "cvservices.htm", "");
	menu.addSubItem("searchengineid", "Letter Of Recommendation Services", "How to prepare a Letter Of Recommendation",  "lorservices.htm", "");

	menu.addSubItem("searchengineid1", "Free Resources", "Free Resources",  "freeresources.htm", "");
	menu.addSubItem("searchengineid1", "Free IMG Newsletter", "Free IMG Newsletter",  "newsletter.htm", "");

	menu.addSubItem("miscid1", "Important Links", "Important Medical Links",  "importantlinks.htm", "");

	menu.addSubItem("miscid", "Contact Franck", "Contact Franck", "mailto:belibi@img-coach.com?subject=Questions and Comments About IMG-Coach");
	menu.addSubItem("miscid", "Client's Files", "Client's Files", "documents.htm");


	menu.showMenu();
}