//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("action", "&nbsp;About Action&nbsp;&nbsp;|", "About Action",  null, null);
	menu.addItem("brand", "Brands&nbsp;&nbsp;|", "To see the brand",  null, null);
	menu.addItem("endorsers", "Brand Endorsers&nbsp;&nbsp;|", "Brand Endorsers",  null, null);
	menu.addItem("showrooms", "Exclusive Showrooms&nbsp;&nbsp;|", "Exclusive Showrooms",  null, null);
	menu.addItem("institutional","Institutional Sales&nbsp;&nbsp;|", "Institutional Sales",  null, null);
	menu.addItem("soles", "Soles&nbsp;", "Soles",  null, null);

	menu.addSubItem("action", "Introduction", "Introduction",  "aboutus.html", "");
	menu.addSubItem("action", "Action At a Glance", "Product Range",  "actionatglance.html", "");
	menu.addSubItem("action", "Strategic Intent", "Strategic Intent",  "strategicintent.html", "");
	menu.addSubItem("action", "Generic Growth Strategies", "Generic Growth Strategies","genericgrowth.html", "");
	menu.addSubItem("action", "Social Responsibility", "Social Responsibility","socialresponsibility.html", "");	

	menu.addSubItem("brand", "Brand Architecture", "Brand Architecture",  "brandarchi.html", "");
	menu.addSubItem("brand", "Health Plus", "Health Plus",  "healthplus.html", "");
	menu.addSubItem("brand", "Campus", "Campus",  "campus.html", "");
	menu.addSubItem("brand", "Dotcom", "Dotcom",  "dotcom.html", "");
	menu.addSubItem("brand", "Milano", "Milano",  "mainmilano.html", "");
	menu.addSubItem("brand", "Eva Flotter", "Eva Flotter",  "evaflotter.html", "");
	menu.addSubItem("brand", "School Time", "School Time",  "schooltime.html", "");
	menu.addSubItem("brand", "Mausam", "Mausam",  "mausam.html", "");
	menu.addSubItem("brand", "Florina", "Florina",  "florina.html", "");
	menu.addSubItem("brand", "Micro", "Micro",  "micro.html", "");
	menu.addSubItem("brand", "Hooha", "Hooha",  "hooha.html", "");
	menu.addSubItem("brand", "Fun Time", "Fun Time",  "funtime.html", "");
	menu.addSubItem("brand", "Roaming", "Roaming",  "roaming.html", "");
	menu.addSubItem("brand", "Fly Float", "Fly Float",  "flyfloat.html", "");
	menu.addSubItem("brand", "Chanchal", "Chanchal",  "chanchal.html", "");
	menu.addSubItem("brand", "Flotter", "Flotter",  "flotter.html", "");
	menu.addSubItem("brand", "Easy Line", "Easy Line",  "easyline.html", "");
	
	menu.addSubItem("endorsers", "Celebrities", "Celebrities",  "celebrities.html", "");
	
	menu.addSubItem("showrooms", "Store Concept", "Store Concept",  "storeconcept.html", "");
	menu.addSubItem("showrooms", "Franchising Offer", "Franchising Offer",  "franchisingoffer.html", "");
	menu.addSubItem("showrooms", "Store Location", "Store Location",  "storelocationmap.html", "");
	menu.addSubItem("showrooms", "Enquiry Form", "Enquiry Form",  "enquiry.html", "");

	menu.addSubItem("institutional", "Introduction", "Introduction",  "institutionalsaleintro.html", "");
	menu.addSubItem("institutional", "Product Range", "Product Range",  "product-range.html", "");
	menu.addSubItem("institutional", "Enquiry Form", "Enquiry Form",  "institutional-enquiry.html", "");
	
	menu.addSubItem("soles", "Introduction", "Introduction",  "soleintro.html", "");
	menu.addSubItem("soles", "Product Range", "Product Range",  "solesarticle1.html", "");
	menu.addSubItem("soles", "Enquiry Form", "Enquiry Form",  "enquiryform.html", "");

	

	//menu.addSubItem("forumok", "FreePC", "FreePC fóruma",  "http://forum.supergamez.hu/forum.php3?azonosito=freeware", "");
	menu.showMenu();
}