function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();

      menu.addItem("item0", "Home", " Home",  "index.html", null);
	
	menu.addItem("item2", "My Second web Page ",null ,  "http://jaswal.freestarthost.com/", "");
      menu.addItem("item7", "Quotes", "Saying of known people", null, null);
	menu.addItem("item3", "Articles", "Q Zone", "quasar.html", null);	
      menu.addItem("item5", "Links", "Links", "link.html", null);
	menu.addItem("miscid", "Mailing", "Mailing", "misc.html", null);
      menu.addItem("item6", "About Me", "Me", "Aboutme.html", null);
      menu.addItem("item8", "Live links!!! ", "Live", null, null);



      menu.addSubItem("item8", "My Latest Location", "Live", "http://www.google.com/latitude/apps/badge/api?user=-5797151237072506358&type=iframe&maptype=hybrid", null);
      menu.addSubItem("item8", "My Web Cam", "Live", "http://qik.com/sudarshan", null);
	menu.addSubItem("item7", "India","My Motherland", "india.html","");
	menu.addSubItem("item7", "Vegetarianism","Quotes abt veg diet", "veg.html","");




	menu.showMenu();
}