//Top Nav bar script v2- 

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("webmasterid", "Company Profile", "Company Profile",  null, null);
	menu.addSubItem("webmasterid", "Standards & Morals", "RESI Standards & Morals",  "http://www.resoftware.com/RESoftware/resistan.htm");
	menu.addSubItem("webmasterid", "FeedBack", "FeedBack",  "http://www.resoftware.com/RESoftware/feedback.htm");
	menu.addSubItem("webmasterid", "______", "______",  "http://resoftware.com/");

	menu.addItem("miscid", "RESI News", "RESI News",  null, null);
	menu.addSubItem("miscid", "RESI Info", "RESI Info",  "http://www.resoftware.com/RESoftware/info.htm");
	menu.addSubItem("miscid", "What's New", "What's New",  "http://www.resoftware.com/RESoftware/Whatsnew.htm");
	menu.addSubItem("miscid", "______", "______",  "http://resoftware.com/");
	
	menu.addItem("newsid", "Services", "RESI Services",  null, null);
	menu.addSubItem("newsid", "Programming Services", "Custom Programming", "http://www.resoftware.com/RESoftware/resiserv.htm");
	menu.addSubItem("newsid", "Web Design & Hosting", "Technical Support",  "http://www.resoftware.com/RESoftware/WebDesign&Hosting.htm");
	menu.addSubItem("newsid", "Technical Support", "Technical Support",  "http://www.resoftware.com/RESoftware/TechnicalSupport.htm");
	menu.addSubItem("newsid", "Training", "Training",  "http://www.resoftware.com/RESoftware/TechnicalTraining.htm");
	menu.addSubItem("newsid", "______", "______",  "http://resoftware.com/");
	
	menu.addItem("freedownloadid", "Downloads", "Downloads",  null, null);
	menu.addSubItem("freedownloadid", "MSDN", "MSDN",  "http://www.msdn.com");
	menu.addSubItem("freedownloadid", "______", "______",  "http://resoftware.com/");
     
	//Only used first hyperlink no need to keep redundant information to bring back original go to menucontext.js 
	
	menu.addItem("searchengineid", "Search Engines", "Search Engines",  null, null);
	menu.addSubItem("searchengineid", "Yahoo", "Yahoo",  "http://www.yahoo.com/");
	menu.addSubItem("searchengineid", "Google", "Google",  "http://www.google.com/");
	menu.addSubItem("searchengineid", "Excite", "Excite", "http://www.excite.com");
	menu.addSubItem("searchengineid", "HotBot", "HotBot",  "http://www.hotbot.com");
	menu.addSubItem("searchengineid", "Ethan", "Ethan",  "http://www.resoftware.com/RESoftware/Ethan.htm");
	menu.addSubItem("searchengineid", "______", "______",  "http://resoftware.com/");

	menu.addItem("productdemosid", "Product Demos", "Product Demos",  null, null);
	menu.addSubItem("productdemosid", "RESI Order Entry Processing System", "RESI Order Entry Processing System",  "http://resoftware.com/RESoftware/ROPSPresentation_files/frame.htm");
	menu.addSubItem("productdemosid", "______", "______",  "http://resoftware.com/");

	
	menu.showMenu();
}