//Top Nav bar script

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

	menu = new Menu();
	menu.addItem("webmasterid", "Hosting", "Hosting",  null, null);
	menu.addItem("newsid", "Irc", "Irc",  null, null);
	menu.addItem("freedownloadid", "Free stuff", "Free stuff",  null, null);
	menu.addItem("searchengineid", "Other", "Other",  null, null);
	menu.addItem("miscid", "Help", "Help",  null, null);


	menu.addSubItem("webmasterid", "Dedicated servers", "Dedicated servers", "/dedicate.php", "");
	        menu.addSubItem("webmasterid", "Virtual servers", "Virtual servers",  "/vs.php", "");
menu.addSubItem("webmasterid", "Reseller", "Reseller",  "/reseller.php", "");
	menu.addSubItem("webmasterid", "Web hosting", "Web hosting",  "/webhosting.php", "");
	
 
	menu.addSubItem("newsid", "Eggdrops", "Eggdrops",  "/eggdrop.php", "");
	menu.addSubItem("newsid", "PsyBNC", "PsyBNC",  "/psybnc.php", "");
	menu.addSubItem("newsid", "IRCd", "IRCd",  "/ircd.php", "");
	menu.addSubItem("newsid", "Vhosts", "Vhosts",  "/hosts.php", "");

	menu.addSubItem("freedownloadid", "Free Email Account", "Free Email Account",  "/mail.php", "");
	menu.addSubItem("freedownloadid", "Free DNS Service", "Free DNS Service",  "/dns.php", "");
	menu.addSubItem("freedownloadid", "Free Software", "Free Software",  "/download.php", "");


        menu.addSubItem("searchengineid", "WebMail", "WebMail",  "http://webmail.sharatim.co.il", "_blank");
menu.addSubItem("searchengineid", "Co-location", "Co-location",  "/colocation.php", "");
menu.addSubItem("searchengineid", "ShoutCast", "ShoutCast",  "/shoutcast.php", "");
        menu.addSubItem("searchengineid", "GameServer", "GameServer",  "/gameserver.php", "");
                menu.addSubItem("miscid", "About us", "About us",  "about.php", "");
		menu.addSubItem("miscid", "Terms", "Terms",  "terms.php", "");
        	menu.addSubItem("miscid", "Email us", "Email us", "mailto:admin@loyalness.com", "");
     	menu.showMenu();

}
