//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("interactid", "Services", "Services",  "services.html", null);
	menu.addItem("aboutid", "Highlights", "Highlights",  "highlights.html", null);
	menu.addItem("contactid", "Contact Us", "Contact Us",  "contact.html", null);
	
	menu.addItem("homeid", "Home", "Home",  "index2.html", null);




	

	
	menu.showMenu();
}
