//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("directid", "Directory", "Directory",  null, null);
	menu.addItem("groundid", "Aberfal Oggy", "Aberfal Oggy",  null, null);
	menu.addItem("firstid", "Shoptiludrop", "Shoptiludrop",  null, null);
	
	
	menu.addSubItem("directid", "Aberfal Oggy", "",  "Aberfaloggy_Falmouth_Carrick_Roads_Sailing_Fishing_News.htm", "");	
	menu.addSubItem("directid", "(1).......Aberfal News", "Falmouth,Carrick Roads,Sailing,Fishing,News",  "Aberfaloggy_Falmouth_Carrick_Roads_Sailing_Fishing_News.htm", "_blank");	
	menu.addSubItem("directid", "(2).......Aberfal RNLI", "Lifeboats,inshore,allweather,news,shouts,events",  "Aberfalrnli_lifeboats_inshore_allweather_news_shouts_events.htm", "_blank");	
	menu.addSubItem("directid", "(3).......Aberfal Attractions", "Newquay Zoo,Maritime,Falmouth,Eden,Museum.",  "Attractions_Newquay_Zoo_Maritime_Falmouth_Eden_Museum.htm", "_blank");	
	menu.addSubItem("directid", "(4).......Aberfal Activities", "Activities",  "activities.htm", "_blank");	
	menu.addSubItem("directid", "(5).......Aberfal Business", "Local Business Directory",  "AberfalBusiness_Local_business_directory.htm", "_blank");	
	menu.addSubItem("directid", "(6).......Aberfal Events", "Events",  "events.htm", "_blank");	
    menu.addSubItem("directid", "(7).......Aberfal Travel/Weather/Surfing", "Weather,Surfing,Airports,Roads,Trains",  "WeatherSurfingTraffic_Weather_Surfing_Airports_Roads_Trains.htm", "_blank");	
    menu.addSubItem("directid", "Shoptiludrop", "",  "index.htm", "");
	menu.addSubItem("directid", "(1).......Ground Floor", "Lingerie,fashion,shoes,clothing,jewellery,accessories,cosmetics,gifts,cards.",  "groundfloor.htm", "");
	menu.addSubItem("directid", "(2).......First Floor", "Art,Baby,Books,Entertainment,Family,Gardens,Health,Homes,Slimming,Toys",  "firstfloor.htm", "");
	menu.addSubItem("directid", "(3).......Second Floor", "Electrical,Office,Gadgets,Mobiles,Computers,Internet,Cameras,DIY,Software,Games,Business.",  "secondfloor.htm", "");
	menu.addSubItem("directid", "(4).......Third Floor", "Sports,Watersport,Foods,Travel,Drinks,Property,Tickets,Insurance,Gear,Holidays.",  "thirdfloor.htm", "");
	menu.addSubItem("directid", "(5).......Fourth Floor", "Hobbies,Casino,Dating,Cars,Carparts,Car Rental,Finance.",  "fourthfloor.htm", "");
		
	menu.addSubItem("groundid", "Aberfal News", "Falmouth,Carrick Roads,Sailing,Fishing,News",  "Aberfaloggy_Falmouth_Carrick_Roads_Sailing_Fishing_News.htm", "_blank");
	menu.addSubItem("groundid", "Aberfal RNLI", "Lifeboats,inshore,allweather,news,shouts,events",  "Aberfalrnli_lifeboats_inshore_allweather_news_shouts_events.htm", "_blank");
	menu.addSubItem("groundid", "Attraction", "Newquay Zoo,Maritime Museum,Falmouth,Eden Project",  "Attractions_Newquay_Zoo_Maritime_Falmouth_Eden_Museum.htm", "_blank");
	menu.addSubItem("groundid", "Activities", "activities.htm",  "activities.htm", "_blank");
	menu.addSubItem("groundid", "Aberfal Business", "Local Business",  "AberfalBusiness_Local_business_directory.htm", "_blank");
	menu.addSubItem("groundid", "Local Events", "Local Events",  "events.htm", "_blank");
	menu.addSubItem("groundid", "Travel/Weather/Surfing", "Local Weather,Traffic,Travel,Surfing",  "WeatherSurfingTraffic_Weather_Surfing_Airports_Roads_Trains.htm", "_blank");
	
	menu.addSubItem("firstid", "Shoptiludrop", "Toys,gifts,lingerie,fashion,shoes,clothing,jewellery,accessories,cosmetics,gifts,cards,Health,Music,DVD,Shopping,Sport,Fashion,Finance,Wines.",  "index.htm", "");
	menu.addSubItem("firstid", "Ground Floor", "Lingerie,fashion,shoes,clothing,jewellery,accessories,cosmetics,gifts,cards.",  "groundfloor.htm", "");
	menu.addSubItem("firstid", "First Floor", "Art,Baby,Books,Entertainment,Family,Gardens,Health,Homes,Slimming,Toys",  "firstfloor.htm", "");
	menu.addSubItem("firstid", "Second Floor", "Electrical,Office,Gadgets,Mobiles,Computers,Internet,Cameras,DIY,Software,Games,Business.",  "secondfloor.htm", "");
	menu.addSubItem("firstid", "Third Floor", "Sports,Watersport,Foods,Travel,Drinks,Property,Tickets,Insurance,Gear,Holidays.",  "thirdfloor.htm", "");
	menu.addSubItem("firstid", "Fourth Floor", "Hobbies,Casino,Dating,Cars,Carparts,Car Rental,Finance.",  "fourthfloor.htm", "");
		
	menu.showMenu();
}