//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://69.15.0.235/RESIDataHub/resistan.htm");
	menu.addSubItem("webmasterid", "FeedBack", "FeedBack",  "http://residatahub.com/RESIDataHub/feedback.htm");



	menu.addItem("newsid", "Services", "RESI Services",  null, null);
	menu.addItem("freedownloadid", "Downloads", "Downloads",  null, null);

	menu.addItem("miscid", "RESI News", "RESI News",  null, null);
	menu.addSubItem("miscid", "RESI Info", "RESI Info",  "http://residatahub.com/RESIDataHub/info.htm");
	
	menu.addItem("searchengineid", "Search Engines", "Search Engines",  null, null);

	
	
	menu.addSubItem("newsid", "Programming Services", "Custom Programming", "http://residatahub.com/RESIDataHub/resiserv.htm");
	menu.addSubItem("newsid", "Web Design & Hosting", "Technical Support",  "http://residatahub.com/RESIDataHub/WebDesign&Hosting.htm");
	menu.addSubItem("newsid", "Technical Support", "Technical Support",  "http://residatahub.com/RESIDataHub/TechnicalSupport.htm");
	menu.addSubItem("newsid", "Training", "Training",  "http://residatahub.com/RESIDataHub/TechnicalTraining.htm");
	
	
	menu.addSubItem("freedownloadid", "MSDN", "MSDN",  "http://www.msdn.com/");
	
     
	//Only used first hyperlink no need to keep redundant information to bring back original go to menucontext.js 
	
	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.showMenu();
}
