//menu objects

function onLoad() {
    window.onResize = onLoad;
    loadMenus ();
}

function loadMenus () {
    window.home = new Menu("Home");
    home.addMenuItem("Bible Guys Home Page", 		"top.window.location='/BibleGuys/BibleGuysHomePage.html'");
    home.addMenuItem("The People of Truth", 		"top.window.location='/index.html'");
    home.menuHiliteBgColor = "#6699CC";

    loadContents();

    loadArchives();


    window.contacts = new Menu("Contacts");
    contacts.addMenuItem("Bible Guys", 			"top.window.location='/BibleGuys/Common/BibleGuysContacts.shtml'");
    contacts.addMenuItem("The People of Truth",	 	"top.window.location='/Contact.html'");
    contacts.addMenuItem("Copyright Information", 	"top.window.location='/BibleGuys/Common/Copyright.shtml'");
    contacts.addMenuItem("Distribution Centers", 	"top.window.location='/BibleGuys/Common/DistributionCenters.shtml'");
    contacts.menuHiliteBgColor = "#6699CC";

    window.subscribe = new Menu("Subscribe");
    subscribe.addMenuItem("Bible Guys", 		"top.window.location='/BibleGuys/Common/BGSubscribe.shtml'");
    subscribe.menuHiliteBgColor = "#6699CC";
 

    window.ask = new Menu("Ask");
    ask.addMenuItem(" Who is Grady R. Kent", 		"top.window.location='Mexico.shtml'");
    ask.addMenuItem("Ask The Bible Guys", 		"top.window.location='/BibleGuys/Common/AskTheBibleGuys.shtml'");

    ask.menuHiliteBgColor = "#6699CC";


	ask.writeMenus();
}

