//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("homeid", "Home Page", "Home Page",  null, null);
	menu.addItem("contactid", "Contact Details", "Contact Details",  null, null);
	menu.addItem("jgid", "JG Owen & Co", "JG Owen & Co",  null, null);
	menu.addItem("shiphayid", "Shiphay Rustics", "Shiphay Rustics",  null, null);
	
	menu.addSubItem("homeid", "JG Owen & Co", "JG Owen and Co",  "index.php");
	
	menu.addSubItem("contactid", "Contact Us", "Contact Us",  "contact.php");

	menu.addSubItem("jgid", "Windows/Small Building Work", "Windows/Small Building",  "windows.php");
	menu.addSubItem("jgid", "Walling/Patios", "Walling/Patios",  "walling.php");
	menu.addSubItem("jgid", "Hedge/Grass Cutting", "Hedge/Grass Cutting",  "hedge.php");
	menu.addSubItem("jgid", "Trees Felled/Topped", "Trees Felled/Topped",  "trees.php");
	menu.addSubItem("jgid", "Fencing Supplied & Erected", "Fencing Supplied & Erected",  "fencing.php");
	menu.addSubItem("jgid", "Lawns Laid & Turfing", "Lawns Laid & Turfing",  "lawns.php");

	menu.addSubItem("shiphayid", "Picnic Tables", "Picnic Tables",  "picnic.php");
	menu.addSubItem("shiphayid", "Hanging Basket Stands", "Hanging Basket Stands",  "basket.php");
	menu.addSubItem("shiphayid", "Wall Planters", "Wall Planters",  "planters.php");
	menu.addSubItem("shiphayid", "Park Benches", "Park Benches",  "benches.php");
	menu.addSubItem("shiphayid", "Dove Cotts", "Dove Cotts",  "dove.php");
	menu.addSubItem("shiphayid", "Garden Sheds", "Garden Sheds",  "sheds.php");
	menu.addSubItem("shiphayid", "Wishing Wells", "Wishing Wells",  "wells.php");
	menu.addSubItem("shiphayid", "Computer Seating", "Computer Seating",  "seating.php");
	menu.addSubItem("shiphayid", "Keyboard Drawers", "Keyboard Drawers",  "keyboard.php");
	menu.addSubItem("shiphayid", "Wheel Barrows", "Wheel Barrows",  "barrows.php");
	
	menu.showMenu();
}