// define menu items 

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("homeid", "&nbsp;&nbsp;&nbsp;&nbsp;Home&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "", "javascript:changeH()", null);
	menu.addItem("commid", "Company&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "",  null, null);
	menu.addItem("orderid", "Jobs&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "Jobs",   "javascript:change3()", null);
	menu.addItem("contactid", "Contact&nbsp;&&nbsp;Location", "",  null, null);

	menu.addSubItem("commid", "&nbsp;&nbsp;About&nbsp;Us", "",  "javascript:change21()",   "");
	menu.addSubItem("commid", "&nbsp;&nbsp;Founder", "",  "javascript:change22()", "");
	menu.addSubItem("commid", "&nbsp;&nbsp;Historical&nbsp;Milestones", "",  "javascript:change23()",   "");
	menu.addSubItem("commid", "&nbsp;&nbsp;Mission&nbsp;Statement", "",  "javascript:change24()",  "");

	
	menu.addSubItem("contactid", "&nbsp;&nbsp;Contact", "",  "javascript:change41()",  "");
	menu.addSubItem("contactid", "&nbsp;&nbsp;Location", "",  "javascript:change42()",  "");							
	menu.showMenu();
}

// define location of links

function changeH()
{
parent.fleft.location="../left/left.html";
parent.ftop.location="../topmenu/index.html";
parent.main.location="../texts/main.html";
}

function change21()
{
parent.ftop.location="../topmenu/index2.html";
parent.main.location="../texts/2.1.html";
}

function change22()
{
parent.ftop.location="../topmenu/index2.html";
parent.main.location="../texts/2.2.html";
}

function change23()
{
parent.ftop.location="../topmenu/index2.html";
parent.main.location="../texts/2.3.html";
}

function change24()
{
parent.ftop.location="../topmenu/index2.html";
parent.main.location="../texts/2.4.html";
}

function change3()
{
parent.ftop.location="../topmenu/index2.html";
parent.main.location="../texts/3.html";
}

function change41()
{
parent.ftop.location="../topmenu/index2.html";
parent.main.location="../texts/4.1.html";
}

function change42()
{
parent.ftop.location="../topmenu/index2.html";
parent.main.location="../texts/4.2.html";
}

