//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("homeid", "Home", "Home",  null, null);
	menu.addItem("aboutid", "About Us", "About Us",  null, null);
	menu.addItem("productsid", "Products", "Products",  null, null);
	menu.addItem("eventsrid", "News & Events", "News & Events",  null, null);
	menu.addItem("resourcesid", "Resources", "Resources",  null, null);
	menu.addItem("buyid", "Order / Buy", "Order / Buy",  null, null);
	menu.addItem("contactid", "Contact", "Contact",  null, null);


	menu.addSubItem("homeid", "Latest News", "Latest News",  "../Home/LatestNews.html", "_self");
	
	menu.addSubItem("aboutid", "Finn Cragg", "Finn Cragg",  "../About/AboutFinnCragg.html", "_self");
	menu.addSubItem("aboutid", "Martin Davidson", "Martin Davidson",  "../About/AboutMartin.html", "_self");
	menu.addSubItem("aboutid", "Lyn Hawkins", "Lyn Hawkins",  "../About/AboutLyn.html", "_self");
	menu.addSubItem("aboutid", "Resellers & Consultants",  "Resellers & Consultants",  "../Contact/ContactReps.html", "_self");
	// menu.addSubItem("aboutid", "Media Reviews", "Media Reviews",  "../About/AboutReviews.html", "_self");
	// menu.addSubItem("aboutid", "Photo Gallery", "Photo Gallery",  "../About/AboutPhotoGallery.html", "_self");

	menu.addSubItem("productsid", "CARAVAN Preview", "CARAVAN Preview",  "../Caravan/CaravanPreview.html", "_self");
	menu.addSubItem("productsid", "CARAVAN Contents", "CARAVAN Contents",  "../Caravan/CaravanContents.html", "_self");
	menu.addSubItem("productsid", "CARAVAN Applications", "CARAVAN Applications",  "../Caravan/CaravanApplications.html", "_self");
    // menu.addSubItem("productsid", "CARAVAN Pricing", "CARAVAN Pricing",  "../Caravan/CaravanPricing.html", "_self");
	// menu.addSubItem("productsid", "CARAVAN Student Work", "CARAVAN Student Work",  "../Caravan/StudentMovies.html", "_self");

	menu.addSubItem("productsid", "EMU Overview", "EMU Overview",  "../Emu/EmuOverview.html", "_self");
	menu.addSubItem("productsid", "EMU Preview", "EMU Preview",  "../Emu/EmuPreview.html", "_self");
	menu.addSubItem("productsid", "EMU Contents", "EMU Contents",  "../Emu/EmuContents.html", "_self");
	menu.addSubItem("productsid", "EMU Applications", "EMU Applications",  "../Emu/EmuApplications.html", "_self");
		
		
	menu.addSubItem("eventsrid", "Latest News", "Latest News",  "../Home/LatestNews.html", "_self");
	menu.addSubItem("eventsrid", "Press Releases", "Press Releases",  "../PressReleases/PressReleases.html", "_self");
	// menu.addSubItem("eventsrid", "Workshops", "Workshops",  "../Events/Workshops.html", "_self");
	// menu.addSubItem("eventsrid", "PD's", "PD's",  "../Events/PD.html", "_self");
	menu.addSubItem("eventsrid", "Conferences", "Conferences",  "../Events/Conferences.html", "_self");
	// menu.addSubItem("eventsrid", "Vide07 Competition", "Vide07 Competiton",  "../Events/Vide07.html", "_self");

	menu.addSubItem("resourcesid", "Teacher Resources", "Teacher Resources",  "../TeacherResources/TeacherResources.html", "_self");
	// menu.addSubItem("resourcesid", "Case Studies", "Case Studies",  "../Resources/CaseStudies01.html", "_self");
	// menu.addSubItem("resourcesid", "Teacher Feedback", "Teacher Feedback",  "../Resources/TeacherFeedback01.html", "_self");
	menu.addSubItem("resourcesid", "Student Examples", "Student Examples", "../StudentSamples/StudentSamples.html", "_self");
	// menu.addSubItem("resourcesid", "Papers", "Papers",  "../Resources/Papers01.html", "_self");

	// menu.addSubItem("resourcesid", "FAQ's", "FAQ's",  "../Resources/FAQs.html", "_self");
	// menu.addSubItem("resourcesid", "Useful Links", "Useful Links",  "../Resources/UsefulLinks.html", "_self");
  	menu.addSubItem("resourcesid", "Consultants' Login", "Consultants' Login",  "../Resources/ConsultantsLogin.html", "_self");
	
	menu.addSubItem("buyid", "Pricing", "Pricing",  "../Buy/Pricing.html", "_self");
	menu.addSubItem("buyid", "Order Form", "Order Form",  "../Buy/OrderForm.html", "_self");
	// menu.addSubItem("buyid", "Order Form", "Order Form",  "../Buy/OrderForm.html", "_self");

	menu.addSubItem("contactid", "Finn Cragg", "Finn Cragg",  "../Contact/ContactFinnCragg.html", "_self");
	menu.addSubItem("contactid", "Resellers & Consultants", "Resellers & Consultants",  "../Contact/ContactReps.html", "_self");
	menu.addSubItem("contactid", "Enquiries", "Enquiries",  "../Contact/EnquiryForm.html", "_self");
	menu.addSubItem("contactid", "Mailing List", "Mailing List",  "../Contact/MailingList.html", "_self");
	menu.addSubItem("contactid", "Feedback", "Feedback",  "../Contact/Feedback.html", "_self");
	
	menu.showMenu();
}