<!--
function onLoad() {
    if (document.layers) {
        loadMenus();
    }
}

function loadMenus() {
    //Dynamic Menus

    window.SubMenu2hearts = new Menu("Two Hearts... A Two Part Story");
    SubMenu2hearts.addMenuItem("Two Hearts... The First Chapter", "top.window.location='2-hearts-1.htm'");
    SubMenu2hearts.addMenuItem("Two Hearts... The Final Chapter", "top.window.location='2-hearts-2.htm'");
    SubMenu2hearts.menuItemBgColor = "#cc9966";
    SubMenu2hearts.menuHiliteBgColor = "#ffcc00";
    SubMenu2hearts.menuItemHeight = 15;
    SubMenu2hearts.fontSize = 12;
    SubMenu2hearts.fontWeight = "Bold";
    SubMenu2hearts.fontColor = "#000000";
    SubMenu2hearts.bgColor = "#996600";

    window.SubMenuJackAlbum = new Menu("Jack's Photo Album");
    SubMenuJackAlbum.addMenuItem("Jack's Photo Album - Part 1", "top.window.location='jack1.htm'");
    SubMenuJackAlbum.addMenuItem("Jack's Photo Album - Part 2", "top.window.location='jack2.htm'");
    SubMenuJackAlbum.menuItemBgColor = "#cc9966";
    SubMenuJackAlbum.menuHiliteBgColor = "#ffcc00";
    SubMenuJackAlbum.menuItemHeight = 15;
    SubMenuJackAlbum.fontSize = 12;
    SubMenuJackAlbum.fontWeight = "Bold";
    SubMenuJackAlbum.fontColor = "#000000";
    SubMenuJackAlbum.bgColor = "#996600";

    window.SubMenuJoss = new Menu("Meet Joss!");
    SubMenuJoss.addMenuItem("Introducing Joss", "top.window.location='joss.htm'");
    SubMenuJoss.addMenuItem("More Fun with Joss", "top.window.location='joss2.htm'");
    SubMenuJoss.addMenuItem("Joss' Serious Moments", "top.window.location='joss3.htm'");
    SubMenuJoss.menuItemBgColor = "#cc9966";
    SubMenuJoss.menuHiliteBgColor = "#ffcc00";
    SubMenuJoss.menuItemHeight = 15;
    SubMenuJoss.fontSize = 12;
    SubMenuJoss.fontWeight = "Bold";
    SubMenuJoss.fontColor = "#000000";
    SubMenuJoss.bgColor = "#996600";


    window.mzjf = new Menu();
    mzjf.menuItemBgColor = "#cc9966";
    mzjf.menuHiliteBgColor = "#ffcc00";
    mzjf.menuItemHeight = 15;
    mzjf.fontSize = 12;
    mzjf.fontWeight = "Bold";
    mzjf.fontColor = "#000000";
    mzjf.bgColor = "#996600";
    mzjf.addMenuItem("Jack Flash's Homepage", "top.window.location='index.html'");
    mzjf.addMenuItem("Take our Guided Site Tour", "top.window.location='tour.htm'");
    mzjf.addMenuItem("DM Support Group", "top.window.location='dm.html'");
    mzjf.addMenuItem("Course and Presentation", "top.window.location='course.html'");
    mzjf.addMenuItem("Locations of Pools for Dogs", "top.window.location='pools.html'");
    mzjf.addMenuItem("DM Warning Signs", "top.window.location='signs.html'");
    mzjf.addMenuItem("Testing for DM", "top.window.location='test.html'");
    mzjf.addMenuItem("The Future of DM Research", "top.window.location='dmdonation.htm'");
    mzjf.addMenuItem("DM Message Board", "top.window.location='boards.html'");
    mzjf.addMenuItem("How to get on Newsletter Email List", "top.window.location='newsl.htm'");
    mzjf.addMenuItem(SubMenu2hearts);
    mzjf.addMenuItem("Jack Flash's Memorial", "top.window.location='memorial.htm'");
    mzjf.addMenuItem(SubMenuJackAlbum);
    mzjf.addMenuItem(SubMenuJoss);
    mzjf.addMenuItem("Meet Missie T !", "top.window.location='missie.htm'");
    mzjf.addMenuItem("Important Links", "top.window.location='links.htm'");
    mzjf.addMenuItem("Medication and Exercise Schedule", "top.window.location='med-ex.htm'");
    mzjf.addMenuItem("The DM Prevention Program", "top.window.location='prevention.html'");
    mzjf.addMenuItem("How To Turn a DM Dog", "top.window.location='turn-dog.htm'");
    mzjf.addMenuItem("Helpful Hints for DM Dogs", "top.window.location='hints.htm'");
    mzjf.addMenuItem("List of Veterinarians", "top.window.location='vets.html'");
    mzjf.addMenuItem("Site Awards", "top.window.location='awards.htm'");
    mzjf.addMenuItem("View and/or Sign our Guestbook", "top.window.location='guestbk.php'");

    mzjf.writeMenus();
}

//-->
