//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm
  
function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation, target);
// AddSubItem(idParent, text, hint, location, linktarget);

	bar = "<font color='#293040'></font>";
	space = "&nbsp;&nbsp;&nbsp;";

	menu = new Menu();

	// Main menu

	menu.addItem("home", "Home"+space, null, "javascript:window.parent.location.replace(\"index.html\");", null, null);
	//menu.addItem("news", "News"+space, null, "pressrelease.shtml", null, null);
	menu.addItem("products", "Products"+space, null, null,null,null);
	menu.addItem("services", "Services"+space, null, null, null, null);
	menu.addItem("solutions", "Solutions"+space, null, null, null, null);
	menu.addItem("profile", "About Us"+space, null, null, null, null);
	//menu.addItem("contact", "Contact Us"+space, null, "contact.shtml", null, null);

	// menu.addItem("SIFT", null, null, null, null, null);

	// News sub menu
	//menu.addSubItem("news", "Press Releases", null, "pressrelease.shtml", "");
	//menu.addSubItem("news", "Events", null, "events.shtml", "");

	// Products (now called Offerings) sub menu
	menu.addSubItem("products", "SIFT", "Search Integration Framework Toolkit", "Sift.shtml", "");
	menu.addSubItem("products", "Integrated Office Search", null, "ResearchPane.shtml", "");
	//menu.addSubItem("products", "Data Discovery", null, "DD.shtml", "");
	//menu.addSubItem("products", "Factiva Accelerator", null, "accelerator.shtml", "");
	menu.addSubItem("products", "Federated Search Connectors", null, "downloads.shtml", "");
	menu.addSubItem("products", "Taxonomies", null, "Taxonomies.shtml", "");	
	// menu.addSubItem("products", "ECommerce", null, "ecommerce.shtml", "");
	menu.addSubItem("products", "Dashboard", null, "pharmaci.shtml", "");
	//menu.addSubItem("products", "Pharmaceutical Search Best Practices", null, "PSBP.shtml", "");
	//menu.addSubItem("products", "Search Tuneup", null, "SearchTuneup.shtml", "");
	menu.addSubItem("products", "eRoom Collection Builder", null, "eroomcollbuildpressrelease.shtml", "");

	
	// Services  sub menu

	menu.addSubItem("services", "Data Discovery", null, "DD.shtml", "");
	menu.addSubItem("services", "Search Best Practices", null, "PSBP.shtml", "");
	menu.addSubItem("services", "Search Tuneup", null, "SearchTuneup.shtml", "");
	//menu.addSubItem("services", "Information Architecture", null, "ZZZZZZZ.shtml", "");
	//menu.addSubItem("services", "Search Assessments", null, "SearchTuneup.shtml", "");

	// Solutions sub menu
	menu.addSubItem("solutions", "Methodology", "Modular Software Development", "methodology.shtml", "");
	menu.addSubItem("solutions", "Publishing", "WilsonWeb Demo", "demo.shtml", "");
	
	menu.addSubItem("solutions", "Search Specialists", "Experts in Search", "searchExperts.shtml", "");
	//menu.addSubItem("solutions", "SIFT", "Search Integration Framework Toolkit", "Sift.shtml", "");
	
	menu.addSubItem("solutions", "Search Solutions", "Search Specialties", "specialties.shtml", "");
	// menu.addSubItem("solutions", "Life Sciences", "Seminars", "seminar.shtml", "");
	// AddSubItem(idParent, text, hint, location, linktarget);
	// SIFT sub menu
// menu.addSubItem("SIFT", "How", "SIFT How we do it", "HowWeDoIt.html", "");

	// Company Profile sub menu
	menu.addSubItem("profile", "Our Customers", null, "customers.shtml", "");	
	menu.addSubItem("profile", "Our Partners", null, "partners.shtml", "");
	menu.addSubItem("profile", "Who We Are", null, "whoweare.shtml", "");
	menu.addSubItem("profile", "News", null, "pressrelease.shtml", "");
	// menu.addSubItem("profile", "What We Do", null, "solutions.shtml", "");
	menu.addSubItem("profile", "Careers", null, "careers.shtml", "");
	menu.addSubItem("profile", "Contact Us", null, "contact.shtml", "");

	//var w = window.open('test');
	//w.document.write( HTMLstr);
	
	return menu.showMenu();
}
