

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("company", "Company", "Company",  null, null);
	menu.addItem("soccer", "Soccer", "Soccer",  null, null);
	menu.addItem("mtb", "Motorbike", "Motorbike",  null, null);
	menu.addItem("leather_j", "Leather Garments", "Leather Garments",  null, null);
	menu.addItem("cordura_g", "Cordura Garments", "Cordura Garments",  null, null);

	menu.addItem("work", "Work Gloves", "Work Gloves",  null, null);
	menu.addItem("contact", "Contact", "Contact ",  null, null);

	menu.addSubItem("company", "Home", "Go to Home",  "mainpage.htm", "_top");
	menu.addSubItem("company", "Profile", "Profile",  "profile.htm", "");

	menu.addSubItem("soccer", "Match Balls", "Match Balls",  "soc_match.htm", "");
	menu.addSubItem("soccer", "Club & Training Balls", "Club & Training Balls",  "soc_training.htm", "");
	menu.addSubItem("soccer", "Promotional Balls", "Promotional Balls",  "soc_promotional.htm", "");
	menu.addSubItem("soccer", "Volley & Beach Balls", "Volley & Beach Balls",  "soc_beach.htm", "");
	menu.addSubItem("soccer", "Hand Balls and Indoor Balls", "Hand Balls",  "soc_hand.htm", "");
	menu.addSubItem("soccer", "Basket, Net, Mini Balls", "Basket Balls",  "soc_basket.htm", "");
	menu.addSubItem("soccer", "Rugby Balls", "Rugby Balls",  "soc_rugby.htm", "");


	menu.addSubItem("soccer", "Goal Keepig Gloves", "Goal Keeping Gloves",  "soc_goal.htm", "");
	menu.addSubItem("soccer", "Accessories", "Accessories",  "soc_access.htm", "");

	menu.addSubItem("mtb", "Racing Gloves", "Motorbike Racing Gloves",  "racing_gloves.htm", "");
	menu.addSubItem("mtb", "Saddle Bags & Wallets", "Saddle Bags & Wallets",  "sad_bags.htm", "");

	menu.addSubItem("leather_j", "Leather Jackets", "Leather Jackets",  "lj_jackets.htm", "");
	menu.addSubItem("leather_j", "Leather Trousers ", "Leather Trousers ",  "lj_trousers.htm", "");
	menu.addSubItem("leather_j", "Country Style", "Country Style",  "lj_country.htm", "");
	menu.addSubItem("leather_j", "Shoulder Bags", "Shoulder Bags",  "shd_bags.htm", "");

	menu.addSubItem("cordura_g", "Cordura Jackets", "Cordura Jackets",  "cg_jackets.htm", "");
	menu.addSubItem("cordura_g", "Cordura Trousers", "Cordura Trousers",  "cg_trousers.htm", "");

	menu.addSubItem("work", "Driver's Gloves", "Driver's Gloves",  "work_driver.htm", "");
	menu.addSubItem("work", "Canadian Rigger", "Canadian Rigger",  "work_canadian.htm", "");
	menu.addSubItem("work", "Working Range", "Working Range",  "work_working.htm", "");
	menu.addSubItem("work", "Welding Gloves", "Welding Gloves",  "work_welding.htm", "");
	menu.addSubItem("work", "Cotton Gloves", "Cotton Gloves",  "work_cotton.htm", "");
	menu.addSubItem("work", "Industrial Wears", "Industrial Wears",  "work_industrial.htm", "");

	menu.addSubItem("contact", "Feed Back", "Feed Back",  "con_feedb.htm", "");
	menu.addSubItem("contact", "Contact us", "Contact us",  "con_cont.htm", "");


	
	menu.showMenu();
}

