//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("webmasterid", "INICIO", "INICIO",  null, null);
	menu.addItem("newsid", "ENLACES", "ENLACES",  null, null);
	menu.addItem("freedownloadid", "TRABAJE CON NOSOTROS", "TRABAJE CON NOSOTROS",  null, null);
	menu.addItem("searchengineid", "BUSCADORES", "BUSCADORES",  null, null);
	

	menu.addSubItem("webmasterid", "INICIO", "INCIO",  "index.html", "");
	
	
	menu.addSubItem("newsid", "Colombia", "Colombia",  "http://www.cyfo.net", target="_blank">"");
	menu.addSubItem("newsid", "EEUU", "EEUU",  "http://wimaxspeed.net", target="_blank"> "");
	

	menu.addSubItem("freedownloadid", "diana.ortiz@ecyfo.com ", "diana.ortiz@ecyfo.com ",  "mailto: diana.ortiz@ecyfo.com", "");
	

	menu.addSubItem("searchengineid", "Yahoo", "Yahoo",  "http://www.yahoo.com/", target="_blank"> "");
	menu.addSubItem("searchengineid", "Google", "Google",  "http://www.google.com/", target="_blank"> "");
	menu.addSubItem("searchengineid", "Bing", "Bing", "http://www.bing.com/", target="_blank"> "");
	

	

	menu.showMenu();
}
