//menu objects

function onLoad() {
    window.onResize = onLoad;
    loadMenus();
}

function loadMenus () {
    

    window.myMenuSub = new Menu("Gallery")
    myMenuSub.addMenuItem("Badlao", "top.window.frames[3].location='badlao1_frame.html'")
    myMenuSub.addMenuItem("Echo Trust", "top.window.frames[3].location='echotrust_frame.html'")
    myMenuSub.addMenuItem("Nandigram", "top.window.frames[3].location='nandigram_frame.html'")
    myMenuSub.addMenuItem("Osvwa", "top.window.frames[3].location='osvwa_frame.html'")
    myMenuSub.addMenuItem("Resource Center", "top.window.frames[3].location='resource_frame.html'")
    myMenuSub.addMenuItem("Stree Bal Shakti", "top.window.frames[3].location='sbs1_frame.html'")
    myMenuSub.addMenuItem("Vikasana", "top.window.frames[3].location='vikasana_frame.html'")
    myMenuSub.addMenuItem("Women in Social Action", "top.window.frames[3].location='wsa1_frame.html'")
    myMenuSub.menuItemBgColor = "#C6E3C5";
    myMenuSub.menuHiliteBgColor = "#FF8040";
    myMenuSub.fontColor = "#003300";
    myMenuSub.fontSize = 12;
    myMenuSub.fontWeight = "bold"; 
    myMenuSub.fontFamily = "arial, helvetica, sans-serif";

    window.myMenu = new Menu("Library");
    myMenu.addMenuItem(myMenuSub);
    myMenu.addMenuItem("Presentations", "top.window.frames[3].location='http://www.idsusa.org/Presentations/Microcredit/sld001.htm'");
    myMenu.menuItemBgColor = "#C6E3C5";
    myMenu.menuHiliteBgColor = "#FF8040";
    myMenu.fontColor = "#003300";
    myMenu.fontSize = 12;
    myMenu.fontWeight = "bold"; 
    myMenu.fontFamily = "arial, helvetica, sans-serif";
    
    myMenu.writeMenus();


}
