//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", "Home", "Home",  null, null);
	menu.addItem("newsid", "Order Hosting", "Order Hosting",  null, null);
	menu.addItem("freedownloadid", "Tech Support", "Tech Support",  null, null);
	menu.addItem("searchengineid", "Questions & Answers", "Questions & Answers",  null, null);
	menu.addItem("miscid", "Web Design", "Web Design",  null, null);

	menu.addSubItem("webmasterid", "Home", "Home",  "http://www.homerwebhosting.com/", "");
        menu.addSubItem("webmasterid", "Starter Plan", "Starter Plan",  "http://www.homerwebhosting.com/plans_details.htm", "");
        menu.addSubItem("webmasterid", "Bronze Plan", "Bronze Plan",  "http://www.homerwebhosting.com/plans_details.htm", "");  
        menu.addSubItem("webmasterid", "Silver Plan", "Silver Plan",  "http://www.homerwebhosting.com/plans_details.htm", ""); 
	menu.addSubItem("webmasterid", "Gold Plan", "Gold Plan",  "http://www.homerwebhosting.com/plans_details.htm", "");

	menu.addSubItem("newsid", "Order Hosting", "Order Hosting",  "https://www.control-access7.com/~asbell_craig/order_form.htm", "");
	menu.addSubItem("newsid", "Make a Payment", "Make a Payment",  "http://www.homerwebhosting.com/payment.htm", "");
	menu.addSubItem("newsid", "Refer a Friend", "Refer a Friend & get 1 month free",  "http://www.homerwebhosting.com/referral.htm", "");
	menu.addSubItem("newsid", "Domain Name", "Domain Name Registration",  "http://www.homerwebhosting.com/domain.htm", "");

	menu.addSubItem("freedownloadid", "Tech Support", "Tech Support",  "http://www.homerwebhosting.com/support.htm", "");
	menu.addSubItem("freedownloadid", "Trouble Ticket", "Create Trouble Ticket",  "http://homerwebhosting.com/support.htm", "");
	menu.addSubItem("freedownloadid", "Online Manual", "Online Manual",  "http://homerwebhosting.com/frame_manual.htm", "");

	menu.addSubItem("searchengineid", "Questions & Answers", "Questions & Answers",  "http://www.homerwebhosting.com/questions_answers.htm", "");
	menu.addSubItem("searchengineid", "Setting Up E-mail", "Setting Up E-mail",  "http://www.homerwebhosting.com/q_and_a_email.htm", "");
	menu.addSubItem("searchengineid", "Online Manual", "Online Manual", "http://www.homerwebhosting.com/frame_manual.htm", "");
	
	menu.addSubItem("miscid", "Web Design", "Web Design",  "http://www.homerwebdesigns.com", "");
	
	menu.showMenu();
}