//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("menuid", "Home menu", "",  null, null);
	menu.addItem("prodid", "Products", "",  null, null);
	menu.addItem("linkid", "Links", "",  null, null);
	menu.addItem("downloadid", "Download", "",  null, null);
	menu.addItem("fontformatsid", "Fontformats", "",  null, null);
	menu.addItem("partnersid", "Partners", "",  null, null);

	menu.addSubItem("menuid", "About", "",  "http://www.pixelfonts.hu/eng/about_eng.htm", "");
	menu.addSubItem("menuid", "Order", "Ordering of font packages",  "http://www.dtc-fonts.com/pixelfonts/forms/eng/orderform_eng.htm", "_blank");
	menu.addSubItem("menuid", "Support", "",  "http://www.pixelfonts.hu/eng/forms/supportform.htm", "");
	menu.addSubItem("menuid", "Copyright", "Copyright info",  "http://www.pixelfonts.hu/eng/pixelfonts_info/copyright.htm", "");

	menu.addSubItem("prodid", "PixelFonts Library 3.x", "Flash / R.A.V.E. fonts",  "http://www.pixelfonts.hu/eng/welcome_eng.html", "");
	menu.addSubItem("prodid", "ScreenFonts Pro", "Windows(R) screenfonts",  "http://www.pixelfonts.hu/eng/pixelfonts_pckg/screenfonts/unicode/wfon.htm", "");
	menu.addSubItem("prodid", "Tótfalusi Typographyae", "Typefaces of Tótfalusi Kis Miklós",  "http://www.totfalusi.hu", "_blank");

	menu.addSubItem("linkid", "betu.hu", "All types...",  "http://www.betu.hu", "_blank");
	menu.addSubItem("linkid", "fonts.hu", "Font packages",  "http://www.fonts.hu", "_blank");
	menu.addSubItem("linkid", "fontshop.hu", "Online font shop",  "http://www.fontshop.hu/underconst.htm", "_blank");
	menu.addSubItem("linkid", "dtc-fonts.com", "Digital Typeface Co.",  "http://www.dtc-fonts.com", "_blank");
	menu.addSubItem("linkid", "totfalusi.hu", "Typefaces of Tótfalusi Kis Miklós",  "http://www.totfalusi.hu", "_blank");
	menu.addSubItem("linkid", "typo.cz", "",  "http://euro.typo.cz", "_blank");

	menu.addSubItem("downloadid", "PixelFonts Library", "Typebook",  "http://www.pixelfonts.hu/pixelfonts_pdf/pixelfonts_30.pdf", "_blank");
	menu.addSubItem("downloadid", "ScreenFonts", "Windows(R) FON",  "http://www.pixelfonts.hu/eng/pixelfonts_pckg/screenfonts/unicode/wfon.htm", "");

	menu.addSubItem("fontformatsid", "OpenType", "OpenType",  "http://www.pixelfonts.hu/eng/underconst.htm", "_blank");
	menu.addSubItem("fontformatsid", "TrueType", "TrueType",  "http://www.pixelfonts.hu/eng/underconst.htm", "_blank");
	menu.addSubItem("fontformatsid", "PostScript(R) Type1", "PostScript(R) fonts",  "http://www.pixelfonts.hu/eng/underconst.htm", "_blank");
	menu.addSubItem("fontformatsid", "FreeType", "Linux / Unix fonts",  "http://www.pixelfonts.hu/eng/underconst.htm", "_blank");
	menu.addSubItem("fontformatsid", "Bitmap", "Windows(R) FON",  "http://www.pixelfonts.hu/eng/pixelfonts_pckg/screenfonts/unicode/wfon.htm", "");
	
	menu.addSubItem("partnersid", "Grasshopper", "Flash / Design",  "http://www.grasshopper.hu", "_blank");
	menu.addSubItem("partnersid", "We look for...!", "We are looking for distributors and dealers!",  "http://www.pixelfonts.hu/eng/wanted_eng.htm", "_blank");
	

	menu.showMenu();
}