function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("about", "À Notre Propos", "À Notre Propos",  null, null);
	menu.addItem("stuff", "Services Et Produits", "Services Et Produits",  null, null);
	menu.addItem("links", "Liens Utiles", "Liens Utiles",  null, null);

	menu.addSubItem("about", "La Compagnie", "La Compagnie",  "presentation.html");
	menu.addSubItem("about", "Contactez-nous", "Contactez-nous",  "email.html");
		
	menu.addSubItem("stuff", "Vente", "Vente",  "vente.htm");
	menu.addSubItem("stuff", "Service", "Service",  "service.htm");
	menu.addSubItem("stuff", "Cartouches", "Cartouches",  "cartouches.html");
	menu.addSubItem("stuff", "Équipement Remis à Neuf", "Équipement Remis à Neuf",  "equip.html");

	menu.addSubItem("links", "Imprimantes", "Imprimantes",  "lpframes.html");
	menu.addSubItem("links", "Photocopieurs", "Photocopieurs",  "lcframes.html");
	menu.addSubItem("links", "Télécopieurs", "Télécopieurs",  "lfframes.html");

	menu.showMenu();
}