//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternatelocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("homeid", "   Home   ", "   Home   ",  null, null);
	menu.addItem("contactid", "Contact Lighthouse", "Contact Lighthouse",  null, null);
	menu.addItem("historyid", "History of Lighthouse", "History of Lighthouse",  null, null);
	menu.addItem("reliefid", "Schedule Relief Time", "Schedule Relief Time",  null, null);
	menu.addItem("testimonialsid", "Client Testimonials", "Client Testimonials",  null, null);
	menu.addItem("webfeedbackid", "Web Site Feedback", "Web Site Feedback",  null, null);

	menu.addSubItem("homeid", "Click here to go to the homepage", "Click here to go to the homepage",  "http://www.lighthousevet.com", "");

menu.addSubItem("contactid", "Click here to get in touch with Lighthouse", "Click here to get in touch with Lighthouse",  "http://www.lighthousevet.com/pages/page7.htm", "");

	menu.addSubItem("reliefid", "Click here to schedule relief time", "Click here to schedule relief time",  "http://www.lighthousevet.com/pages/page14.htm", "");
		
	menu.addSubItem("historyid", "Click here for the history of Lighthouse", "Click here for the history of Lighthouse",  "http://www.lighthousevet.com/pages/page9.htm", "");
	
	menu.addSubItem("testimonialsid", "Click here to read what our clients have to say about Lighthouse", "Click here to read what our clients have to say about Lighthouse",  "http://www.lighthousevet.com/pages/page15.htm", "");
	
	menu.addSubItem("webfeedbackid", "What do you think?", "What do you think?",  "http://www.lighthousevet.com/pages/page16.htm", "");
	
	menu.showMenu();
}