function menucontent()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idItem, text, hint, location);

menu = new Menu();
	menu.addItem("website", "Host", "www.rogerlovejoy.co.uk",  "../index.htm", null);
	menu.addItem("wholefood", "Wholefoods", "Next Order?",  "../foodndrink/essential", null);
	menu.addItem("land", "Land", "ELF Trust - Land Use - Agriculture - Squatting", null, null);
	menu.addItem("genetics", "GMOs", "Genetically Engineering the Environment", null, null);
	menu.addItem("monsanto", "Monsanto Crimes", "Monsanto Crimes Against Humanity", null, null);

	menu.addSubItem("monsanto", "&nbspFull Report&nbsp", "Products and Campaigns", "http://www.monsantowatch.org.uk"); 	
	menu.addSubItem("monsanto", "&nbspPlan Colombia&nbsp", "Aerial Spaying of Colombia",  "http://www.monsantowatch.org.uk/colombia/colombia.htm");
	menu.addSubItem("monsanto", "&nbspAnniston&nbsp", "World's Worst PCB contamination", "http://www.monsantowatch.org.uk/usa/anniston");
	
	menu.addSubItem("land", "&nbspELF Trust&nbsp", "Land at Harewood - Calstock", "../elf/index.htm");
	menu.addSubItem("land", "&nbspSquatting&nbsp", "Contacts - Help on Mass Tresspass and Squatting", "../squattin/index.htm"); 	

	menu.addSubItem("genetics", "&nbspLabelling&nbsp", "European Parliament Labbeling and Contamination", "europarl.htm"); 
	menu.addSubItem("genetics", "&nbspGeneral/Links&nbsp", "Views and Links", "index.htm"); 
	menu.addSubItem("genetics", "&nbspShort Story&nbsp", "Mankind's bio-impact over the Millenia", "genetale.htm"); 

menu.showMenu();
}