//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("msgtdialid", "MSgt Dial", "MSgt Dial",  null, null);
	menu.addItem("proseid", "Prose & Stories", "Prose& Stories",  null, null);
	menu.addItem("linksid", "Educational Links", "Educational Links",  null, null);
        menu.addItem("familyid", "Family & Friends", "Family & Friends",  null, null);
	menu.addItem("contactid", "Coming Soon", "Coming Soon",  null, null);

	menu.addSubItem("msgtdialid", "MSgt Dial", "MSgt Dial",  "http://www.angelfire.com/tn3/ellieshouse/msgtdial.html", "_blank");
	menu.addSubItem("msgtdialid", "A Walk in Faith", "A Walk in Faith",  "http://www.angelfire.com/tn3/ellieshouse/awalkinfaith.html", "_blank");
	menu.addSubItem("msgtdialid", "Silent Reflections", "Silent Reflections",  "http://www.angelfire.com/tn3/ellieshouse/reflecions.html", "_blank");
	menu.addSubItem("msgtdialid", "The Road of Life", "The Road of Life",  "http://www.angelfire.com/tn3/ellieshouse/life.html", "_blank");
	menu.addSubItem("msgtdialid", "Thank You", "Thank You",  "http://www.angelfire.com/tn3/ellieshouse/thankyou.html", "_blank");

	menu.addSubItem("proseid", "ABCs of Parenting", "ABCs of Parenting",  "http://www.angelfire.com/tn3/ellieshouse/abc.html", "_blank");
	menu.addSubItem("proseid", "I Didn't Know", "I Didn't Know",  "http://www.angelfire.com/tn3/ellieshouse/teach.html", "_blank");
	menu.addSubItem("proseid", "The 7-UPS", "The 7-UPS",  "http://www.angelfire.com/tn3/ellieshouse/7-ups.html", "_blank");
	menu.addSubItem("proseid", "Door", "Door",  "http://www.angelfire.com/tn3/ellieshouse/door.html", "_blank");
	menu.addSubItem("proseid", "It Matters", "It Matters",  "http://www.angelfire.com/tn3/ellieshouse/matters.html", "_blank");
	menu.addSubItem("proseid", "Unity", "Unity",  "http://www.angelfire.com/tn3/ellieshouse/unity.html", "_blank");
	menu.addSubItem("proseid", "Crayons", "Crayons",  "http://www.angelfire.com/tn3/ellieshouse/crayons.html", "_blank");
        menu.addSubItem("proseid", "Children Learn", "Children Learn",  "http://www.angelfire.com/tn3/ellieshouse/childrenlearn.html", "_blank");
        menu.addSubItem("proseid", "Teddy", "Teddy",  "http://www.angelfire.com/tn3/ellieshouse/teddy.html", "_blank");
        
        menu.addSubItem("linksid", "Teacher Resources", "Teacher Resources",  "http://www.angelfire.com/tn3/ellieshouse/Links.html", "_blank");

        menu.addSubItem("familyid", "Ellie", "Ellie",  "http://www.angelfire.com/tn3/ellieshouse/ellie.html", "_blank");
        
       
        menu.addSubItem("contactid", "Coming Soon", "Coming Soon");
	

        

	
	
	menu.showMenu();
}

