//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("webmasterid3", "Home", "",  null, null);
	
	menu.addItem("webmasterid", "Application Design", "",  null, null);
	menu.addItem("newsid", "Site Design", "News Sites",  null, null);
	menu.addItem("freedownloadid", "Contact", "Free Downloads",  null, null);
	menu.addSubItem("webmasterid3", "Home Page", "",  "index2.cfm", "");
	

	menu.addSubItem("webmasterid", "View Applications", "",  "index6.cfm", "");
	
	menu.addSubItem("newsid", "View Portfolio", "",  "Index3.cfm", "");
	
	menu.addSubItem("freedownloadid", "Contacts Page", "Contact Us",  "index5.cfm", "");
	
	

	menu.showMenu();
}