//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",  "index.html", "");
	
	menu.addItem("newsid", "About Us", "About Us",  null, null);
	menu.addItem("freedownloadid", "Events", "Events",  null, null);
	menu.addItem("searchid", "Trade Fair Forms", "Forms for Online Use, Printing and Downloads",  "tradefairforms.html", "");
        menu.addItem("miscid", "Contact Us", "Contact KADCCIMA", "contactus.html", "");
      		
        menu.addSubItem("newsid", "A brief on KADCCIMA", "A brief on KADCCIMA",  "aboutus.html", "");
	menu.addSubItem("newsid", "About the Kaduna International Trade Fair", "Kaduna International Trade Fair",  "aboutusb.html", "");

	menu.addSubItem("freedownloadid", "31st Kaduna Int'l Trade Fair Event Details", "31st Kaduna International Trade Fair Event Details",  "tradefair.html", "");
        menu.addSubItem("freedownloadid", "Exhibition Profile for the Kaduna Int'l Trade Fair", "Exhibition Profile for the Trade Fair",  "exhibitionprofile.html", "");
        menu.addSubItem("freedownloadid", "The 27th Kaduna Trade Fair Coverage", "The 27th Kaduna Trade Fair Coverage",  "27tradefair.html", "");
        menu.addSubItem("freedownloadid", "The 26th Kaduna Trade Fair Coverage", "The 26th Kaduna Trade Fair Coverage",  "26tradefair.html", "");
       
	
	menu.addSubItem("searchid", "Online Trade Fair Forms", "Online Trade Fair Forms",  "forms.html", "");
	menu.addSubItem("searchid", "Download Trade Fair Forms", "Download Trade Fair Forms",  "formd.html", "");
	menu.addSubItem("searchid", "Direct Printing of Trade Fair Forms", "Direct Printing of Trade Fair Forms", "formpd.html", "");
	
        
	menu.addSubItem("miscid", "Application For Participation", "Application For Participation",  "application4p.PDF", "");
	menu.addSubItem("miscid", "Application For Power Supply", "Application For Power Supply",  "application4ps.PDF", "");
	menu.addSubItem("miscid", "Application For Water Supply/Telephone Connection", "Application For Water Supply/Telephone Connection",  "application4w_t.PDF", "");

	menu.showMenu();
}