function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Home", "http://www.carrols.com/default.htm");
	menu.addItem("carrolsid", "Carrols", "Carrols",  null, null);
	menu.addItem("burgerkingid", "Burger King", "Burger King",null, null);
	menu.addItem("polloid", "Pollo Tropical", "Pollo Tropical",null, null);
	menu.addItem("tacocabanaid", "Taco Cabana", "Taco Cabana",null, null);

	 
	
menu.addSubItem("carrolsid", "About", "About",  "http://www.carrols.com/html/companyinfo.htm");
	menu.addSubItem("carrolsid", "History", "History",  "http://www.carrols.com/html/history.htm");
	menu.addSubItem("carrolsid", "President", "President",  "http://www.carrols.com/html/president.htm");
	menu.addSubItem("carrolsid", "Employment", "Employment",  "http://www.carrols.com/html/employment.htm");
	menu.addSubItem("carrolsid", "Contact", "Contact",  "http://www.carrols.com/html/contact.htm");

	 menu.addSubItem("burgerkingid", "About", "About",  "http://www.carrols.com/html/bk.htm");
	menu.addSubItem("burgerkingid", "Employment", "Employment",  "http://www.carrols.com/html/bkemployment.htm");
	menu.addSubItem("burgerkingid", "Benefits", "Benefits",  "http://www.carrols.com/html/bkbenefits.htm");
        menu.addSubItem("burgerkingid", "Restaurant Profile", "Restaurant Profile",         	"http://www.carrols.com/html/bkprofile.htm");
	menu.addSubItem("burgerkingid", "Training", "Training",  "http://www.carrols.com/html/bktraining.htm");
        menu.addSubItem("burgerkingid", "Career Path", "Career Path",  "http://www.carrols.com/html/careerpath.htm");
        menu.addSubItem("burgerkingid", "Contact", "Contact",  "http://www.carrols.com/html/contact.htm");

	menu.addSubItem("polloid", "About", "About",  "http://www.carrols.com/html/pollotropical.htm");
	menu.addSubItem("polloid", "Employment", "Employment",  "http://www.carrols.com/html/polloemployment.htm");
	menu.addSubItem("polloid", "Benefits", "Benefits",  "http://www.carrols.com/html/pollobenefits.htm");
	menu.addSubItem("polloid", "Restaurant Profile", "Restaurant Profile","http://www.carrols.com/html/polloprofile.htm");
	menu.addSubItem("polloid", "Career Path", "Career Path",  "http://www.carrols.com/html/pollocareerpath.htm");
	menu.addSubItem("polloid", "Contact", "Contact",  "http://www.carrols.com/html/contact.htm");
	menu.addSubItem("polloid", "Web Site", "pollotropical.com", "http://www.pollotropical.com");
	
	menu.addSubItem("tacocabanaid", "About", "About", "http://www.carrols.com/html/tacocabana.htm");
	menu.addSubItem("tacocabanaid", "Employment", "Employment", 	"http://www.tacocabana.com/careers/");
	menu.addSubItem("tacocabanaid", "Web Site", "tacocabana.com", 	"http://www.tacocabana.com");





	 

	menu.showMenu();
}
