//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", "",  "index.html");
	menu.addItem("Exhibitionid", "Exhibition", "",  null, null);
	menu.addItem("eventid", "Visiting the Event", "",  null, null);
	menu.addItem("travelid", "Travel", "",  null, null);
    menu.addItem("pressid", "Press", "",  null, null);
    menu.addItem("contactid", "Contact", "",  "contact_us.html");
    menu.addItem("Languagesid", "Languages", "",  null, null);


  menu.addSubItem("Exhibitionid", "About Us", "",  "about_us.html");	
  menu.addSubItem("Exhibitionid", "The Event", "",  "the_event.html");
  menu.addSubItem("Exhibitionid", "Show Profiles", "",  "show_profiles.html");
  menu.addSubItem("Exhibitionid", "Photos", "",  "photos.html");
  menu.addSubItem("Exhibitionid", "Package & Cost", "",  "package_cost.html");        
  menu.addSubItem("Exhibitionid", "Venue", "Exhibition Venue",  "venue.html");
  menu.addSubItem("Exhibitionid", "Floor Plan", "",  "layout.html");
menu.addSubItem("Exhibitionid", "Exhibitors", "",  "Exhibitors.html");
  menu.addSubItem("Exhibitionid", "Booth Reservation", "",  "booth_reservation.html");	
menu.addSubItem("Exhibitionid", "Exhibitor Manual", "",  "Exhibitor_Manual.pdf");
     
  menu.addSubItem("eventid", "2010 Show Preview", "",  "ShowPreview/flyer.pdf");
  menu.addSubItem("eventid", "Highlights", "",  "highlights.html");
  menu.addSubItem("eventid", "Media Information", "",  "media_info.html");
  menu.addSubItem("eventid", "Opening Hours/Admission", "",  "opening.html");
  menu.addSubItem("eventid", "Visitor Pre Registration", "", "visitor_pre_registration.html");
  menu.addSubItem("travelid", "Plan Your Trip", "",  "plan_your_trip.html");
  menu.addSubItem("travelid", "Hotels Reservation", "",  "hotels_reservation.html");
  menu.addSubItem("pressid", "Media Advisory", "",  "Media.html");
  menu.addSubItem("pressid", "Pre Show Release", "",  "preshow_release.html");
  menu.addSubItem("pressid", "Post Show Release", "",  "postshow_release.html");
  menu.addSubItem("pressid", "Press Registration", "",  "press_registration.html");
  menu.addSubItem("Languagesid", "Japan", "",  "Japan.pdf");
 
 
      

	menu.showMenu();
}