
function onLoad() {
    window.onResize = onLoad;
    loadMenus();
}

function loadMenus () {
// Languages ************************************************************************************************************************************
   	
    window.myMenu1 = new Menu("LANG");
    myMenu1.addMenuItem("English","location='const.html'");
    myMenu1.addMenuItem("Romanian", "location='const.html'");
    myMenu1.addMenuItem("Russian", "location='const.html'");
    myMenu1.disableDrag = true

// Main ************************************************************************************************************************
    window.myMenu1 = new Menu("MAIN");
    myMenu1.addMenuItem("Somthing or Nothing","location='const.html'");
    myMenu1.disableDrag = true


// Activities ***********************************************************************************************************************

    window.myMenu3 = new Menu("ACTI");
    myMenu3.addMenuItem("Monitoring and reporting","location='/eng/acti/monit.html'");
    myMenu3.addMenuItem("Seminars, Round Table, Brainstorming", "location='/eng/acti/semin.html'");
    myMenu3.addMenuItem("Documentary visits", "location='/eng/acti/document.html'");
    myMenu3.addMenuItem("Legal Aid Consultations", "location='/eng/acti/cons.html'");
    myMenu3.addMenuItem("Popularizing the knowledge", "location='/eng/acti/popul.html'");
    myMenu3.addMenuItem("Public Interest Litigation", "location='/eng/acti/litigii.html'");
    myMenu3.addMenuItem("Legal Expertise", "location='/eng/acti/expert.html'");
    myMenu3.addMenuItem("Extra judiciary advocacy", "location='/eng/acti/advoc.html'");
    myMenu3.addMenuItem("Institutional Development of  MHC", "location='/eng/acti/dezv.html'");
	myMenu3.disableDrag = true

// Publications **************************************************************************************************************

    window.myMenu4 = new Menu("PUB");
    myMenu4.addMenuItem("Published Books","location='/eng/publ/publ.html'");
    myMenu4.addMenuItem("Articles","location='/eng/publ/art.html'");

    	myMenu4.disableDrag = true

// About CHDOM ********************************************************************************************************************************

    window.myMenu5 = new Menu("ABOUT");
    myMenu5.addMenuItem("Statute", "location='/eng/desp/stat.html'");
    myMenu5.addMenuItem("Personnel", "location='/eng/desp/pers.html'");
    myMenu5.addMenuItem("Current Projects", "location='/eng/desp/proiect.html'");
	myMenu5.disableDrag = true

// Photo Gallery *********************************************************************************************************************

   	window.mySubMenu8 = new Menu("Workshops");
	mySubMenu8.addMenuItem("Press Conferences", "location='/eng/gal/seminare/conf/gallery.html'");
        mySubMenu8.addMenuItem("Round tables", "location='/eng/gal/seminare/meserotunde/gallery.html'");
        mySubMenu8.addMenuItem("Victims support(26-th of June)", "location='/eng/gal/seminare/victime/gallery.html'");
        mySubMenu8.disableDrag = true

   	window.mySubMenu9 = new Menu("Trainings for police officers");
	mySubMenu9.addMenuItem("Training for the Northern region-Baltsi", "location='/eng/gal/politie/balti/gallery.html'");
        mySubMenu9.addMenuItem("Training for the South Region-Cahul", "location='/eng/gal/politie/cahul/gallery.html'");
        mySubMenu9.addMenuItem("Training for the Central Region-Orhei", "location='/eng/gal/politie/orhei/gallery.html'");
	mySubMenu9.disableDrag = true


   	window.mySubMenu10 = new Menu("Documentation visits");
	mySubMenu10.addMenuItem("Roma communities", "location='/eng/gal/vizite/romi/gallery.html'");
        mySubMenu10.addMenuItem("Penal institutions", "location='/eng/gal/vizite/penitenciare/gallery.html'");
        mySubMenu10.addMenuItem("Remand prisons/ Inquiry wards", "location='/eng/gal/vizite/ancheta/gallery.html'");
	mySubMenu10.disableDrag = true
  

    window.myMenu6 = new Menu("PHOTO");
//    myMenu6.addMenuItem("All Photos", "location='/eng/gal/gallery.html'");

    myMenu6.addMenuItem(mySubMenu8);
    myMenu6.addMenuItem(mySubMenu9);
    myMenu6.addMenuItem(mySubMenu10);
    myMenu6.disableDrag = true

// Site Map *********************************************************************************************************
    window.myMenu7 = new Menu("SITE");
    myMenu7.addMenuItem("Full Site Map", "location='/eng/const.html'");	
     myMenu7.disableDrag = true


	window.acp_nat_mgm = new Menu("WebDesigners");
	acp_nat_mgm.writeMenus();
}

