function mainitems1()
{
	//defines menu items

	mymenu1 = new Menu;
	//defines colour of main table border and positioning
	mymenu1.maintableprops("#23522F",1,1,0);
	//defines colour of main cells and positioning
	mymenu1.maincellprops("left","#23522F","#000000");
	//defines colour of sub table cell borders and positioning
	mymenu1.subtableprops("#FFFFFF",1,1,0);
	//defines colour of sub cells and positioning
	mymenu1.subcellprops("left","#23522F","#000080");
	//defines font type, size and colour
	mymenu1.fontdetails("Verdana",1,"#FFFFCC");
	mymenu1.startMenu();
	//defines the names of the links
	mymenu1.addMenu("home","&nbsp;Home&nbsp;|", "http://www.gammaresearch.com/index.htm");
	mymenu1.addMenu("events","&nbsp;Events&nbsp;|");
	mymenu1.addMenu("training","&nbsp;Training&nbsp;|");
	mymenu1.addMenu("support","&nbsp;Support&nbsp;|");
	mymenu1.addMenu("doccenter","&nbsp;Document&nbsp;Center&nbsp;|");
	mymenu1.addMenu("vacancies","&nbsp;Vacancies&nbsp;|");
	mymenu1.addMenu("contact","&nbsp;Contact&nbsp;|");
	mymenu1.addMenu("aboutgamma","&nbsp;About&nbsp;Gamma");
	mymenu1.showMainMenu();
}

function subitems1()
{
	//defines the drop down links category name - name to appear - URL
mymenu1.addSubMenu("home", "&nbsp;Gamma Research", "http://www.gammaresearch.com/index.htm");
//
mymenu1.addSubMenu("events", "&nbsp;Press Releases", "http://www.gammaresearch.com/Events/index.htm");
mymenu1.addSubMenu("events", "&nbsp;Seminars", "http://www.gammaresearch.com/Events/index.htm");
mymenu1.addSubMenu("events", "&nbsp;Trade Shows", "http://www.gammaresearch.com/Events/index.htm");
//
mymenu1.addSubMenu("training", "&nbsp;Gamma Research", "http://www.gammaresearch.com/Training/index.htm");
mymenu1.addSubMenu("training", "&nbsp;AS-Aruba", "http://www.gammaresearch.com/Training/index.htm");
mymenu1.addSubMenu("training", "&nbsp;AS-Curaçao", "http://www.gammaresearch.com/Training/index.htm");
mymenu1.addSubMenu("training", "&nbsp;ANTEK", "http://www.gammaresearch.com/Training/index.htm");
//
mymenu1.addSubMenu("support", "&nbsp;Distributors", "http://www.gammaresearch.com/Distributors/index.htm");
//
mymenu1.addSubMenu("doccenter", "&nbsp;Knowledgebase", "http://www.gammaresearch.com/Knowlegdebase/index.htm");
//
mymenu1.addSubMenu("contact", "&nbsp;Gamma Research", "http://www.gammaresearch.com/Contact/index.htm");
mymenu1.addSubMenu("contact", "&nbsp;Feedback", "http://www.gammaresearch.com/Contact/Feedback.htm");
//
mymenu1.addSubMenu("aboutgamma", "&nbsp;Company Profile&nbsp;", "http://www.gammaresearch.com/Company/index.htm");
mymenu1.addSubMenu("aboutgamma", "&nbsp;Company Relations&nbsp;", "http://www.gammaresearch.com/Company/relations.htm");
//
mymenu1.showMenu();

}