function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("webmasterid", "My Sites", "My Sites",  null, null);
	menu.addItem("newsid", "Kerala News", "Kerala News",  null, null);
    menu.addItem("musicid", "Favourites", "Favourites",  null, null);
	menu.addItem("miscid", "India News", "India News",  null, null);
	menu.addItem("searchengineid", "Search Engines", "Search Engines",  null, null);
	menu.addItem("emailid", "Contact", "Contact",  null, null);

	menu.addSubItem("webmasterid", "Kerala on the Net", "Kerala on the Net",  "http://www.123kerala.com/");
	menu.addSubItem("webmasterid", "Malayalam Publications", "Malayalam Publications",  "http://www.123kerala.com/malpub.html");
    menu.addSubItem("webmasterid", "www.123kerala.com", "www.123kerala.com",  "http://www.123kerala.com/index.htm");
	menu.addSubItem("webmasterid", "Malayalee Homepages", "Malayalee Homepages",  "http://www.123kerala.com/malayaly.html");
	menu.addSubItem("webmasterid", "Tellicherry.com", "Tellicherry.com",  "http://www.tellicherry.com/");
    menu.addSubItem("webmasterid", "Chithram", "Chithram",  "http://www.chithram.net/");

	menu.addSubItem("newsid", "Mathrubhumi", "Mathrubhumi",  "http://www.mathrubhumi.com");
	menu.addSubItem("newsid", "Malayala Manorama", "Malayala Manorama",  "http://www.malayalamanorama.com");
	menu.addSubItem("newsid", "Kerala Kaumudi", "Kaumudi",  "http://www.kaumudi.com");
	menu.addSubItem("newsid", "Deepika", "Deepika",  "http://www.deepika.com");
	menu.addSubItem("newsid", "Deshabhimani", "Deshabhimani",  "http://www.deshabhimani.com");
	
	menu.addSubItem("musicid", "Cricinfo", "Cricinfo",  "http://www-uk.cricket.org/");
	menu.addSubItem("musicid", "Rediff on the Net", "Rediff on the Net",  "http://www.rediff.com/");
	menu.addSubItem("musicid", "Samachar", "Samachar",  "http://www.samachar.com/");
	menu.addSubItem("musicid", "Shaadi.com", "Shaadi.com",  "http://www.shaadi.com/ptnr.php?ptnr=123k");
    menu.addSubItem("musicid", "NSE", "NSE",  "http://www.nseindia.com/");

	menu.addSubItem("miscid", "Hindu", "Hindu",  "http://www.hindu.com/");
	menu.addSubItem("miscid", "Hindustan Times", "Hindustan Times",  "http://www.hindustantimes.com/");
	menu.addSubItem("miscid", "Times of India", "Times of India",  "http://www.timesofindia.com/");
	menu.addSubItem("miscid", "Economic Times", "Economic Times",  "http://www.economictimes.com/");
	menu.addSubItem("miscid", "NewIndPress", "NewIndPress",  "http://www.newindpress.com/");

	menu.addSubItem("searchengineid", "Yahoo", "Yahoo",  "http://www.yahoo.com/");
	menu.addSubItem("searchengineid", "Google", "Google",  "http://www.google.com/");
	menu.addSubItem("searchengineid", "MSNsearch", "MSNsearch", "http://www.msnsearch.com");
	menu.addSubItem("searchengineid", "Ask", "Ask",  "http://www.ask.com");

	menu.addSubItem("emailid", "Contact", "Contact",  "mailto:sanjeev@123kerala.com");


	menu.showMenu();
}
