//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("logonid", "Log On", "Log On",  null, null);
	menu.addItem("helpid", "HELP", "HELP",  null, null);

	menu.addSubItem("logonid", "Log On", "Log On",  "http://3djeweler.com/wipm/list_galleries.php?active_select=active", "");
	

	menu.addSubItem("helpid", "Help", "Help",  "http://3djeweler.com/wipm/instruct_gallery.php", "");
	menu.addSubItem("helpid", "Contact", "Contact", "http://3djeweler.com/wipm/display_contact1.php?store_id=store_id", "");

	menu.showMenu();
}