//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("presentation", "Web Site Presentation", "Personal Data, Greetings, etc...", null, null);
	menu.addItem("radioshack", "My Radio Station", "",  null, null);
	menu.addItem("projects", "My projects", "Projects in which I'm working with ...ideas...",  null, null);
	menu.addItem("trips", "My Trips", "Expeditions, radio experiences, pictures gallery",  null, null);
	menu.addItem("swl", "SWL's Corner", "Links to broadcasting webs","./ea5xqswle.html", null);
	menu.addItem("guestbook", "GuestBook", "Sign in my GuestBook",  null, null);
	menu.addItem("links", "Radio - Links", "Interesting Links",null, null);
	
	menu.addSubItem("links", "Associations", "Links to the main associations or radioclubs.",  "./ea5xqlne.html#ASSOCIATIONS");
	menu.addSubItem("links", "CW", "Links to interesting sites related to CW.",  "./ea5xqlne.html#CW");
	menu.addSubItem("links", "Equipment", "For searching ham stores...",  "./ea5xqlne.html#EQUIPMENT");
	menu.addSubItem("links", "SWL", "This is the specific place for the SWLs",  "./ea5xqlne.html#SWL");
	menu.addSubItem("links", "Propagation", "If you want to foresee the conditions of your next QSO...",  "./ea5xqlne.html#PROPAGATION");
	menu.addSubItem("links", "VHF", "For the VHF Lovers",  "./ea5xqlne.html#VHF");
	menu.addSubItem("links","","","");
	
	menu.addSubItem("radioshack", "->My Sparks Workplace", "",  "./ea5xqshe.html");
	menu.addSubItem("radioshack", "->My little CW Keys Museum", "",  "./ea5xqmuseum_cwkeys.html");
	menu.addSubItem("radioshack", "->RIGs", "QRO, QRP, Old fashion",  "./ea5xqshe.html#RIGS");
	menu.addSubItem("radioshack", "->Antennas", "",  "./ea5xqshe.html#ANTENNAS");
	menu.addSubItem("radioshack","","","");
	
	menu.addSubItem("projects", "->Serie-Parallel Tuner", "Based in W5OLY design",  "./ea5xqpre_tuner.html");
	menu.addSubItem("projects", "->Magnetic Loops", "",  "./ea5xqpre_magneticloop.html");
	menu.addSubItem("projects", "->Indoor Antennas", "Experiences with indoor antennas",  "./ea5xqpre_indoorantenna.html");
	menu.addSubItem("projects", "->HFPack Antennas", "Experiences with HF Pack Antennas",  "./ea5xqpre_indoorantenna.html");
	menu.addSubItem("projects", "->Antennas Multiband switch", "",  "./ea5xqpre_multibandswitch.html");
	menu.addSubItem("projects", "->Antenna Moxon for 2m", "",  "./ea5xqpre_moxon2m.html");
	menu.addSubItem("projects", "","","");
	
	menu.addSubItem("trips", "->Introduction", "Introduction",  "./ea5xqtrips.html");
	menu.addSubItem("trips", "->EA4 - Madrid", "",  "./ea5xqtrips_ea4.html");
	menu.addSubItem("trips", "->OH2 - Helsinki (Finland)/QRP", "",  "./ea5xqtrips_oh2.html");
	menu.addSubItem("trips", "->Friedrichshafen, Ham Messe June 2001 (Germany)", "",  "./ea5xqtrips_fried.html");
	menu.addSubItem("trips", "->EA2 - Frias de Albarracín (Teruel) /QRP", "",  "./ea5xqtrips_friasea2.html");
	menu.addSubItem("trips", "->XE2 - Monterrey (Mexico) /QRP", "",  "./ea5xqtrips_xe2.html");
	menu.addSubItem("trips", "->XE3 - Yucatan (Mexico)", "",  "./ea5xqtrips_xe3.html");
	menu.addSubItem("trips", "->PA - Amsterdam (The Netherlands)", "",  "./ea5xqtrips_pa.html");
	menu.addSubItem("trips", "->W9 - St. Charles - Chicago (Illinois)", "",  "./ea5xqtrips_w9.html");
	menu.addSubItem("trips", "->Field Days, EA5XQ/P", "",  "./ea5xqtrips_p.html");
	menu.addSubItem("trips", "","","");
	
	menu.addSubItem("guestbook", "->Sign in my GuestBook", "",  "./guestbook/addguest.html");
	menu.addSubItem("guestbook", "->See the GuestBook entries", "",  "./guestbook/guestbook.html");
	menu.addSubItem("guestbook", "","","");
	
	menu.addSubItem("presentation", "->Home", "Home",  "./index_eng.html");
	menu.addSubItem("presentation", "->Personal Data", "Personal Data",  "./ea5xq_datapers_e.html");
	menu.addSubItem("presentation", "->CQ, CQ... from EA5XQ", "My Audio Message",  "./sounds/wellcome.wav");
	menu.addSubItem("presentation", "->My QSLs Album EA", "",  "./ea5xq_qslmapaea.html");
	menu.addSubItem("presentation", "->My QSLs Album EU", "",  "./ea5xq_qslmapaeu.html");
	menu.addSubItem("presentation", "->My QSLs Album NA", "",  "./ea5xq_qslmapana.html");
	menu.addSubItem("presentation", "->My QSLs Album SA", "",  "./ea5xq_qslmapasa.html");
	menu.addSubItem("presentation", "->My QSLs Album OC", "",  "./ea5xq_qslmapaoc.html");
	menu.addSubItem("presentation", "->My QSLs Album AF", "",  "./ea5xq_qslmapaaf.html");
	menu.addSubItem("presentation", "","","");
	
	menu.showMenu();
}