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

	menu = new Menu();
	menu.addItem("draperiesid", "Draperies", "Draperies",  null, null);
	menu.addItem("toppersid", "C2C Toppers", "Close2Custom Toppers",  null, null);
	menu.addItem("balloonid", "Balloon & Shades", "Balloon & Shades",  null, null);
	menu.addItem("accid", "Accessories", "Accessories",  null, null);
	menu.addItem("hardwareid", "Drapery Hardware", "Drapery Hardware",  null, null);
	menu.addItem("motorizationid", "Motorization", "Motorization",  null, null);
	menu.addItem("booksid", "Fabric Books", "Fabric Books",  null, null);
	menu.addItem("companyid", "Our Company", "Our Company",  null, null);
	
	// Draperies
	menu.addSubItem("draperiesid", "Custom Draperies", "Custom Draperies",  "customdraperies.html");
	menu.addSubItem("draperiesid", "Close2Custom Draperies", "Close2Custom Draperies",  "topperprogramdraperies.html");
	menu.addSubItem("draperiesid", "Ripplefold", "Ripplefold",  "ripplefold.html");
	
	// Toppers
	menu.addSubItem("toppersid", "C2C toppers", "Close2Custom Toppers",  "topperprogram.html");
	menu.addSubItem("toppersid", "Custom Valances", "Custom Valances",  "customvalances.html");
	
	// Balloons & Shades
	menu.addSubItem("balloonid", "Roman Shades", "Roman Shades",  "romanshades.html");
	menu.addSubItem("balloonid", "Balloons", "Balloons",  "balloons.html");
	menu.addSubItem("balloonid", "Laminated Window Shades", "Laminated Window Shades",  "laminatedwindowshades.html");
	menu.addSubItem("balloonid", "Rollease", "Rollease",  "rollease.html");
	menu.addSubItem("balloonid", "RBS", "RBS",  "RBS.html");
	
	// Accessories
	menu.addSubItem("accid", "Custom Bedspreads", "Custom Bedspreads",  "custombedspreads.html");
	menu.addSubItem("accid", "Pillows", "Pillows",  "pillows.html");
	menu.addSubItem("accid", "Miscellaneous", "Miscellaneous",  "miscellaneous.html");
	
	//  Draperie Hardware
	menu.addSubItem("hardwareid", "Kirsch", "Kirsch",  "DraperyHardwareKirsch.html");
	menu.addSubItem("hardwareid", "Nottinghan Forest", "Nottinghan Forest",  "DraperyHardwareNottingham2InchWoodRod.html");
	menu.addSubItem("hardwareid", "Novo Mondo", "Novo Mondo",  "DraperyHardwareNovoMondo.html");
	menu.addSubItem("hardwareid", "Florentine Collection", "Florentine Collection",  "florentinecollection.html");
	menu.addSubItem("hardwareid", "Busche", "Busche",  "Busche.html");


//  Fabric Books
	menu.addSubItem("booksid", "American Heritage", "American Heritage",  "pgAmericanHeritage.html");
	menu.addSubItem("booksid", "Kal's Still Here", "Kal's Still Here",  "kals.html");
	menu.addSubItem("booksid", "Lily and Lace", "Lily abd Lace",  "lilyandlace.html");
	menu.addSubItem("booksid", "Proud Mary", "Proud Mary",  "pgProudmary.html");
	menu.addSubItem("booksid", "New Awakenings", "New Awakenings",  "newawakenings.html");
	menu.addSubItem("booksid", "NorthSouth", "NorthSouth",  "pgNorthSouth.html");
	menu.addSubItem("booksid", "Shore to Shore", "Shore to Shore",  "pgShoreToShore.html");
	menu.addSubItem("booksid", "Silks", "Silks",  "Silks.html");
	menu.addSubItem("booksid", "Spells Abound", "Spells Abound",  "spellsabound.html");

	// Motorization
	menu.addSubItem("motorizationid", "Drapery Track Motorization", "Drapery Track sMotorization",  "motorization.html");
	
	// Our Company
	menu.addSubItem("companyid", "About Us", "About Us",  "our_company.html");
	
	
		
	menu.showMenu();
}