function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("aboutus", "HOME", "About SUDA", null, null);
	menu.addItem("schemes", "SCHEMES", "Various Schemes",  null, null);
	menu.addItem("innovations", "INNOVATIONS", "Innovations By Us",  null, null);
	
	
	menu.addSubItem("aboutus", " What We Are ", " What We Are ",  "index.html");
	
	

	menu.addSubItem("schemes","V.A.M.B.A.Y."," Valmiki Ambedkar Awas Yojana ",  "sch_vambay.html");
	menu.addSubItem("schemes","S.J.S.R.Y."," Swarna Jayanti Shahari Rozgar Yojana ",  "sch_sjsry.html");
	menu.addSubItem("schemes", "<blockquote>U.S.E.P. ", " URBAN SELF EMPLOYMENT PROGRAMME ",  "sch_usep.html");
	menu.addSubItem("schemes", "<blockquote>U.W.E.P. ", " URBAN WAGE EMPLOYMENT PROGRAMME ", "sch_uwep.html");
	menu.addSubItem("schemes","N.S.D.P."," NATIONAL SLUM DEVELOPMENT PROGRAMME ",  "sch_nsdp.html");
	menu.addSubItem("schemes","L.C.S."," LOW COST SANITION ",  "sch_lcs.html");
	
	menu.addSubItem("innovations", " DWACUA ", "Development of Women and Childeren in Urban Areas with the help of Self help Groups", "inn_dwacua.html");
	menu.addSubItem("innovations", " ANPY ", "Awwal Number Puraskar Yojana", "inn_anpy.html");
	menu.addSubItem("innovations", " SEWA KENDRA ", "Sewa Kendra", "inn_sewakendra.html");
	menu.addSubItem("innovations", " KANYA DAAN ", "Sewa Kendra Yojana", "inn_kanyadaan.html");
	
	menu.showMenu();
}